Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
text-mining-workflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Omnicrobe
text-mining-workflow
Merge requests
!55
Resolve "change the location of the ontologies"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "change the location of the ontologies"
74-change-the-location-of-the-ontologies
into
dev
Overview
1
Commits
2
Pipelines
0
Changes
6
Merged
Mouhamadou Ba
requested to merge
74-change-the-location-of-the-ontologies
into
dev
2 years ago
Overview
1
Commits
2
Pipelines
0
Changes
6
Expand
Closes
#74 (closed)
Edited
2 years ago
by
Mouhamadou Ba
0
0
Merge request reports
Compare
dev
version 1
5e702e9e
2 years ago
dev (base)
and
latest version
latest version
e0883753
2 commits,
2 years ago
version 1
5e702e9e
1 commit,
2 years ago
6 files
+
39
−
73
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
generate_concept_path.snakefile deleted
100644 → 0
+
0
−
34
Options
## config file
configfile: "config/config.yaml"
ONTONAMES = 'BioNLP-OST+EnovFood-Habitat BioNLP-OST+EnovFood-Phenotype BioNLP-OST+EnovFood-Use'
'''
all
'''
rule all:
input:
expand("ancillaries/{ontoname}.paths", ontoname=ONTONAMES.split(' '))
'''
generate concept paths
'''
rule generate_concept_path:
input:
onto="ancillaries/{ontoname}.obo"
output:
paths="ancillaries/{ontoname}.paths"
params:
plan="plans/get_onto_paths.plan"
singularity:config['SINGULARITY_IMG']
shell: """alvisnlp -cleanTmp -verbose \
-alias input {input.onto} \
-alias output {output.paths} \
{params.plan}
"""
Loading