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" .