FAQ
| This is a
LIVE
service |
Changelog
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PDN Canto Config
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
James Nairn
PDN Canto Config
Merge requests
!9
merging vitor_testing into testing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
merging vitor_testing into testing
vitor_testing
into
testing
Overview
0
Commits
11
Pipelines
0
Changes
1
Merged
Vitor Trovisco
requested to merge
vitor_testing
into
testing
4 years ago
Overview
0
Commits
11
Pipelines
0
Changes
1
Expand
replacing most './' with CANTOSPACE variable (i.e ${CANTOSPACE}/)
commenting line 273, so that an empty file is not created and the rest of the scripts uses an old, non-empty file. just for testing.
Edited
4 years ago
by
Vitor Trovisco
0
0
Merge request reports
Compare
testing
testing (base)
and
latest version
latest version
975fcf13
11 commits,
4 years ago
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
weekly_routine.sh
+
4
−
4
Options
@@ -209,7 +209,7 @@ if [[ -z "${DBNAME}" ]]; then
fi
# Transform $DBNAME
CANTO_CONFIG
=
"
.
/canto/canto_deploy.yaml"
CANTO_CONFIG
=
"
${
CANTOSPACE
}
/canto/canto_deploy.yaml"
log
"Inserting
${
DBNAME
}
into
${
CANTO_CONFIG
}
"
if
[[
-e
"
${
CANTO_CONFIG
}
"
]]
;
then
@@ -242,10 +242,10 @@ if [[ "${DATACHANGED}" == "YES" ]]; then
export
OWLTOOLS_MEMORY
=
20g
# redo/replace merged FBbt-GO.obo ontology
sh
.
/FBbt-GO_routine/FBbt-GO_routine.sh
sh
${
CANTOSPACE
}
/FBbt-GO_routine/FBbt-GO_routine.sh
# replace extension_config.tsv
sh
.
/extension_config-Rscript/list-to-extension_config.sh
sh
${
CANTOSPACE
}
/extension_config-Rscript/list-to-extension_config.sh
# reload the ontologies and extension configuration
# JWRN comment: I suspect the sudo here is superfluous as the script is running as root so removed
@@ -267,7 +267,7 @@ check_if_canto_restart_required
CURATEDPAPERLISTFILE
=
"./fbrf_input_list.tsv"
log
"Creating
${
CURATEDPAPERLISTFILE
}
"
/usr/bin/perl /data/export/support_scripts/get_fbrfs_to_add_to_canto.pl /data/export/support_scripts/modules_server.cfg
>
"
${
CURATEDPAPERLISTFILE
}
"
#
/usr/bin/perl /data/export/support_scripts/get_fbrfs_to_add_to_canto.pl /data/export/support_scripts/modules_server.cfg > "${CURATEDPAPERLISTFILE}"
# Test fbrf_input_list.tsv exists and isn't empty
if
[[
(
-e
"
${
CURATEDPAPERLISTFILE
}
"
)
&&
(
-s
"
${
CURATEDPAPERLISTFILE
}
"
)
]]
;
then
Loading