Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
astrocyte-atac-source
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Felix Perez
astrocyte-atac-source
Commits
df81fab0
Commit
df81fab0
authored
1 year ago
by
Felix Perez
Browse files
Options
Downloads
Plain Diff
Merge branch 'fpwork' into 'main'
Build first draft of the fix for the module error encountered. See merge request
!7
parents
497ab03e
e85b13d0
Branches
Branches containing commit
1 merge request
!7
Build first draft of the fix for the module error encountered.
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
astrocyte_pkg.yml
+2
-2
2 additions, 2 deletions
astrocyte_pkg.yml
workflow/configs/biohpc.config
+2
-1
2 additions, 1 deletion
workflow/configs/biohpc.config
workflow/main.nf
+3
-2
3 additions, 2 deletions
workflow/main.nf
with
7 additions
and
5 deletions
astrocyte_pkg.yml
+
2
−
2
View file @
df81fab0
...
...
@@ -81,8 +81,8 @@ workflow_modules:
# Singularity supports different registries, please specify the protocol to use.
# Such as, "docker://", "shub://", "library://", etc. We encourage you to use the GitLab
# container registry of BioHPC to save and manage your container images.
workflow_containers
:
-
docker://git.biohpc.swmed.edu:5050/s219741/astrocyte-atac-source/atac:0.0.1
#
workflow_containers:
#
- docker://git.biohpc.swmed.edu:5050/s219741/astrocyte-atac-source/atac:0.0.1
# A list of parameters used by the workflow, defining how to present them,
# options etc in the web interface. For each parameter:
...
...
This diff is collapsed.
Click to expand it.
workflow/configs/biohpc.config
+
2
−
1
View file @
df81fab0
/*
singularity
{
enabled
=
true
runOptions
=
''
...
...
@@ -13,7 +14,7 @@ singularity {
cacheDir
=
"$baseDir/images/singularity"
//
Singularity
images
specified
in
`
workflow_containers
`
of
astrocyte_pkg
.
yml
will
be
saved
to
//
this
folder
automatically
,
before
running
the
workflow
.
The
images
will
be
renamed
as
//
"NAME-TAG.img"
,
e
.
g
.
ubuntu
-
latest
.
img
,
centos
-
centos8
.
img
,
r
-
4
.
1
.
1
.
img
,
etc
.
}
}
*/
process
{
executor
=
'slurm'
...
...
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
3
−
2
View file @
df81fab0
...
...
@@ -29,8 +29,9 @@ process runSource {
shell:
'''
module load python/3.8.x-anaconda
module load openjdk/18
export PATH="/cm/shared/apps/openjdk/18/jdk-18/bin:/cm/shared/apps/python/3.8.x-anaconda/condabin:/cm/shared/apps/python/3.8.x-anaconda/bin:$PATH"
python --version > python_version.txt
java -version 2> java_version_before.txt
# Enable the use of bash-specific conda commands in this shell.
eval "$(conda shell.bash hook)"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment