-
Notifications
You must be signed in to change notification settings - Fork 0
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 #47 from yhoogstrate/alphabet_extension
v1.7.0: large and feature rich update
- Loading branch information
Showing
48 changed files
with
4,125 additions
and
293 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 |
---|---|---|
|
@@ -18,3 +18,9 @@ repeats.txt | |
build/ | ||
xcheck.sh | ||
*.fa.fai | ||
*.o | ||
/bin-meson | ||
/build-meson | ||
*.ninja | ||
.ninja* | ||
test-mount.sh |
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 was deleted.
Oops, something went wrong.
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,5 +1,11 @@ | ||
#!/bin/bash | ||
|
||
#cmake -GNinja -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=~/.local -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON . | ||
#ninja -j`nproc` | ||
#ninja install | ||
|
||
|
||
## using make - sometimes much slower | ||
cmake -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=~/.local -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON . | ||
make "$@" -j `nproc` | ||
make "$@" -j $(nproc) | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
|
||
meson bin-meson | ||
cd bin-meson | ||
ninja |
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,5 +1,7 @@ | ||
#!/bin/bash | ||
|
||
#cmake -GNinja -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON . | ||
|
||
cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON . | ||
make "$@" -j `nproc` | ||
sudo make install | ||
make "$@" -j $(nproc) | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
A 0000 | ||
B 0001 | ||
C 0010 | ||
D 0011 | ||
G 0100 | ||
H 0101 | ||
K 0110 | ||
M 0111 | ||
N 1000 | ||
R 1001 | ||
S 1010 | ||
T 1011 | ||
U 1100 | ||
V 1101 | ||
W 1110 | ||
Y 1111 | ||
|
||
- by idx |
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,40 @@ | ||
;; guix package --install-from-file=/home/youri/src/fastafs/guix.scm | ||
;; https://guix.gnu.org/blog/2018/a-packaging-tutorial-for-guix/ | ||
|
||
(use-modules (guix packages) | ||
(guix download) | ||
(guix git-download) | ||
(guix build-system gnu) | ||
(guix build-system cmake) | ||
(guix licenses) | ||
(gnu packages boost) | ||
(gnu packages compression) | ||
(gnu packages tls) | ||
(gnu packages linux)) | ||
|
||
(package | ||
(name "fastafs") | ||
(version "1.7.0") | ||
(source (origin | ||
(method url-fetch) | ||
; (uri (string-append "https://github.com/yhoogstrate/fastafs/archive/a39eddbf810d7a828d33d6dbe8c913bbffd58948.tar.gz")) | ||
(uri (string-append "file:///home/youri/.local/src/fastafs.tar.gz")) | ||
(sha256 | ||
(base32 | ||
"1njzvaxy1nq4202ispphyxddihq1x1cmfzbl8zmkqiwa028k540c")))) | ||
(build-system cmake-build-system) | ||
(arguments | ||
`(#:build-type "debug" | ||
#:tests? #f) ; skip tests that fail because test data is not in build path | ||
) | ||
(inputs | ||
`(("boost" ,boost) | ||
("zlib" ,zlib) | ||
("openssl" ,openssl) | ||
("fuse" ,fuse) | ||
)) | ||
(synopsis "fastafs") | ||
(description | ||
"fastafs: toolkit for file system virtualisation of random access compressed FASTA, FAI, DICT & TWOBIT files") | ||
(home-page "https://github.com/yhoogstrate/fastafs") | ||
(license gpl2+)) |
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.