-
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.
Restructuring code directories to conform to nimble standard, adding …
…nimble install option, renamed functions to conform with fasta/q migration
- Loading branch information
Nathan Roach
committed
Nov 20, 2020
1 parent
51a1df1
commit 6616821
Showing
41 changed files
with
83 additions
and
26 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
!**.R | ||
!**.bsh | ||
!**.nim | ||
!**.nims | ||
!**.nimble | ||
!**.md | ||
!**.c | ||
|
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,3 +1,3 @@ | ||
[submodule "threadpools"] | ||
path = 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,24 @@ | ||
# 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"] | ||
# skipDirs = @["tests"] | ||
# skipFiles = @["GT04008021.bam"] | ||
|
||
# task test, "run the tests": | ||
# exec "nim c --lineDir:on --debuginfo -r tests/all" |
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 @@ | ||
switch("threads", "on") | ||
switch("passL","src/poaV2/liblpo.a") | ||
switch("passL","src/poaV2/align_score.o") |
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 @@ | ||
switch("threads", "on") |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Submodule threadpools
updated
from 000000 to 92b298