Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
Jbrowse2 Annelids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arendt Group
Jbrowse2 Annelids
Commits
40dd7072
Commit
40dd7072
authored
10 months ago
by
cyril.cros
Browse files
Options
Downloads
Patches
Plain Diff
will try soon to build the image
parent
697f9de3
No related branches found
No related tags found
1 merge request
!1
Check docker
Pipeline
#58297
canceled
10 months ago
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
TODO.md
+1
-0
1 addition, 0 deletions
TODO.md
image/Dockerfile
+16
-0
16 additions, 0 deletions
image/Dockerfile
image/jbrowse_script.sh
+5
-0
5 additions, 0 deletions
image/jbrowse_script.sh
with
22 additions
and
0 deletions
TODO.md
+
1
−
0
View file @
40dd7072
# TODO
-
use htslib for bgzip and tabix
-
npx @jbrowse/cli add-assembly https://s3.embl.de/annelids/pdumv021_genome.fa.gz --name pdumv021
-
use SAMtools for faidx
\ No newline at end of file
This diff is collapsed.
Click to expand it.
image/Dockerfile
0 → 100644
+
16
−
0
View file @
40dd7072
# Stage 1: Jbrowse config file generated
FROM
quay.io/biocontainers/jbrowse2:2.10.2--h5284365_0
as
jbrowse_builder
WORKDIR
/app
RUN
jbrowse create annelids
&&
cd
annelids
COPY
jbrowse_script.sh .
RUN
./jbrowse_script.sh
RUN
rm
-rf
./node_modules
# Stage 2: Load into nginx
FROM
nginx:alpine
WORKDIR
/usr/share/nginx/html
RUN
rm
-rf
./
*
COPY
--from=jbrowse_builder /app/annelids .
ENTRYPOINT
["nginx", "-g", "daemon off;"]
This diff is collapsed.
Click to expand it.
image/jbrowse_script.sh
0 → 100755
+
5
−
0
View file @
40dd7072
#!/bin/bash -eux
# Platy only for now
jbrowse add-assembly https://s3.embl.de/annelids/pdumv021/pdumv021_genome.fa.gz
--name
pdumv021
jbrowse add-track https://s3.embl.de/annelids/pdumv021/pdumv021.sorted.gff.gz
-d
"Kevin pdumv021 GTF file"
-n
"Genes models"
--category
"Annotations"
jbrowse add-track https://s3.embl.de/annelids/pdumv021/transdecoder.gff.gz
-d
"Kevin runs transdecoder"
-n
"Transdecoder results"
--category
"Annotations"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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