-
Notifications
You must be signed in to change notification settings - Fork 1
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 #1 from NatPRoach/clustering
Add draft of clustering functionality; restructure directory layout to be inline with nimble recommendations; add .nimble file
- Loading branch information
Showing
42 changed files
with
1,181 additions
and
1,174 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "threadpools"] | ||
path = src/threadpools | ||
url = https://github.com/yglukhov/threadpools.git |
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,7 +1,8 @@ | ||
NIM = nim c | ||
|
||
conduit: | ||
cd poaV2 && make | ||
$(NIM) -d:release --threads:on --passL:poaV2/liblpo.a --passL:poaV2/align_score.o conduit.nim | ||
$(NIM) -d:release conduitUtils.nim | ||
cd src/poaV2 && make | ||
mkdir bin/ | ||
cd src/ && $(NIM) -d:release --threads:on --passL:poaV2/liblpo.a --passL:poaV2/align_score.o conduit.nim && mv src/conduit bin/ | ||
cd src/ && $(NIM) -d:release conduitUtils.nim && mv src/conduitUtils 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,19 @@ | ||
# Package | ||
|
||
version = "0.1.0" | ||
author = "Nathan Roach" | ||
description = "De novo transcriptome assembler" | ||
license = "GPLv2" | ||
|
||
# Dependencies | ||
|
||
requires "hts >= 0.3.1", "nim >= 1.0.0" | ||
|
||
srcDir = "src/" | ||
|
||
before install: | ||
echo "Building poaV2" | ||
withDir "src/poaV2": | ||
exec "make" | ||
|
||
bin = @["conduit", "conduitUtils", "conduit_clustering"] |
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
switch("threads", "on") | ||
switch("passL","src/poaV2/liblpo.a") | ||
switch("passL","src/poaV2/align_score.o") |
Oops, something went wrong.