-
Notifications
You must be signed in to change notification settings - Fork 7
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 #23 from NBISweden/dev
Merge changes from dev into main for version 0.4.2
- Loading branch information
Showing
24 changed files
with
151 additions
and
63 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
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,25 @@ | ||
results/ | ||
data/logs/ | ||
data/raw_reads_symlinks/ | ||
data/mitogenomes/*.fasta.amb | ||
data/mitogenomes/*.fasta.ann | ||
data/mitogenomes/*.fasta.bwt | ||
data/mitogenomes/*.fasta.pac | ||
data/mitogenomes/*.fasta.sa | ||
|
||
data/raw_reads_symlinks/ | ||
resources/ | ||
results/ | ||
tmpConsensi.fa | ||
*.html | ||
|
||
.cache/ | ||
.java/ | ||
.snakemake/ | ||
.test/data/references/repeat* | ||
.test/data/references/*bed | ||
.test/data/references/*dict | ||
.test/data/references/*amb | ||
.test/data/references/*ann | ||
.test/data/references/*bwt | ||
.test/data/references/*fai | ||
.test/data/references/*pac | ||
.test/data/references/*sa | ||
.test/data/references/*genome | ||
.test/data/references/*upper.fasta |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM ubuntu:18.04 AS builder | ||
MAINTAINER NBIS Sweden <generode@nbis.se> | ||
RUN apt update -y && apt install -y \ | ||
autoconf \ | ||
automake \ | ||
gcc \ | ||
libbz2-dev \ | ||
libcurl4-gnutls-dev \ | ||
liblzma-dev \ | ||
libncurses5-dev \ | ||
libssl-dev \ | ||
make \ | ||
perl \ | ||
wget \ | ||
zlib1g-dev | ||
|
||
WORKDIR /bedtools | ||
|
||
RUN wget https://github.com/arq5x/bedtools2/releases/download/v2.29.2/bedtools.static.binary && \ | ||
mv bedtools.static.binary /bedtools/bedtools && \ | ||
chmod a+x /bedtools/bedtools | ||
|
||
FROM ubuntu:18.04 AS production | ||
RUN apt update -y && apt install -y \ | ||
libcurl4-gnutls-dev | ||
COPY --from=nbisweden/generode-htslib-1.15.1:latest /htslib/bgzip /usr/bin | ||
COPY --from=nbisweden/generode-htslib-1.15.1:latest /htslib/tabix /usr/bin | ||
# COPY --from=verku/htslib-1.15.1:latest /htslib/bgzip /usr/bin # container used for development | ||
# COPY --from=verku/htslib-1.15.1:latest /htslib/tabix /usr/bin # container used for development | ||
COPY --from=builder /bedtools/bedtools /usr/bin/ |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM ubuntu:18.04 AS builder | ||
MAINTAINER NBIS Sweden <generode@nbis.se> | ||
RUN apt update -y && apt install -y \ | ||
autoconf \ | ||
automake \ | ||
gcc \ | ||
libbz2-dev \ | ||
libcurl4-gnutls-dev \ | ||
liblzma-dev \ | ||
libncurses5-dev \ | ||
libssl-dev \ | ||
make \ | ||
perl \ | ||
wget \ | ||
zlib1g-dev | ||
|
||
WORKDIR /htslib | ||
RUN wget https://github.com/samtools/htslib/releases/download/1.15.1/htslib-1.15.1.tar.bz2 && \ | ||
bunzip2 htslib-1.15.1.tar.bz2 && \ | ||
tar xfv htslib-1.15.1.tar && \ | ||
cd htslib-1.15.1 && \ | ||
./configure && \ | ||
make && \ | ||
cp bgzip /htslib/ && \ | ||
cp tabix /htslib/ && \ | ||
make install |
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
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
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
Oops, something went wrong.