-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from kauralasoo/CAGE
Build new promoter annotations based on CAGE peaks from FANTOM5
- Loading branch information
Showing
14 changed files
with
94,112 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
|
||
tests/data/cdss.rds | ||
tests/data/exons.rds | ||
tests/data/Homo_sapiens.GRCh37.74.TranscriptDb.db | ||
*.DS_Store | ||
tests/testthat/.Rhistory | ||
.Rhistory | ||
*.Rhistory | ||
.Rproj.user | ||
.Rbuildignore | ||
txrevise.Rproj | ||
scripts/.snakemake | ||
scripts/processed | ||
scripts/SlurmOut | ||
*.img |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
FROM bioconductor/bioconductor_docker:RELEASE_3_10 | ||
LABEL authors="Kaur Alasoo" \ | ||
FROM bioconductor/bioconductor_docker:RELEASE_3_11 | ||
LABEL authors="Andreas Vija" \ | ||
description="Docker image containing all requirements for txrevise R package and pipeline" | ||
|
||
RUN R -e "BiocManager::install(c('GenomicFeatures','devtools', 'optparse', 'rtracklayer','purrrlyr','readr', 'tidyr'))" | ||
RUN apt-get update && apt-get install -y libcurl4 | ||
RUN R -e "install.packages(install.packages('XML', repos = 'http://www.omegahat.net/R'))" | ||
RUN R -e "BiocManager::install(c('GenomicFeatures', 'devtools', 'optparse', 'rtracklayer', 'purrrlyr', 'readr', 'tidyr', 'data.table', 'ggplot2'))" | ||
RUN R -e "devtools::install_github('kauralasoo/txrevise')" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
### Build the Docker container | ||
sudo docker build -t kauralasoo/txrevise . | ||
#sudo docker build -t andreasvija/txrevise . | ||
|
||
### Push to DockerHub | ||
docker push kauralasoo/txrevise | ||
#docker push andreasvija/txrevise | ||
|
||
### Build a local copy of the Singularity container | ||
singularity build txrevise.img docker://kauralasoo/txrevise:latest | ||
cd scripts | ||
singularity build txrevise.img docker://andreasvija/txrevise:latest |
Oops, something went wrong.