-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dinucleotide patterns analysis tools v1.0 #11245
Merged
bgruening
merged 2 commits into
bioconda:master
from
erinijapranckeviciene:dnpatterntoolsv1
Oct 6, 2018
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
sed 's/CPROGNAME/binstrings/g' CMakeLists.template > CMakeLists.txt | ||
|
||
mkdir -p build | ||
cd build | ||
|
||
SEQAN_INCLUDE_PATH="$CONDA_DEFAULT_ENV/include/" | ||
CMAKE_PREFIX_PATH="$CONDA_DEFAULT_ENV/share/cmake/seqan" | ||
cmake ../ -DCMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH" -DSEQAN_INCLUDE_PATH="$SEQAN_INCLUDE_PATH" | ||
|
||
make | ||
cp binstrings $PREFIX/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,6 @@ | ||
c_compiler: | ||
- gcc # [linux] | ||
- clang # [osx] | ||
cxx_compiler: | ||
- gxx # [linux] | ||
- clangxx # [osx] |
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,34 @@ | ||
package: | ||
name: binstrings | ||
version: "1.0" | ||
|
||
source: | ||
url: https://github.com/erinijapranckeviciene/dnpatterntools/files/2450741/v1.0.tar.gz | ||
sha256: 19c46d6bc6a1af70e5a2b4a051aab334026dc38c84b367ea9c445da3fdb21cfe | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- seqan-library | ||
- cmake | ||
|
||
host: | ||
- zlib | ||
- bzip2 | ||
|
||
run: | ||
- zlib | ||
- bzip2 | ||
|
||
test: | ||
commands: | ||
- binstrings --help | ||
|
||
about: | ||
home: https://github.com/erinijapranckeviciene/dnpatterntools | ||
license: MIT | ||
summary: "Convert fasta strings into dinucleotide binary indicator string as 00101..." |
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,14 @@ | ||
#!/bin/bash | ||
|
||
sed 's/CPROGNAME/corrprofile/g' CMakeLists.template > CMakeLists.txt | ||
|
||
mkdir -p build | ||
cd build | ||
|
||
SEQAN_INCLUDE_PATH="$CONDA_DEFAULT_ENV/include/" | ||
CMAKE_PREFIX_PATH="$CONDA_DEFAULT_ENV/share/cmake/seqan" | ||
cmake ../ -DCMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH" -DSEQAN_INCLUDE_PATH="$SEQAN_INCLUDE_PATH" | ||
|
||
make | ||
cp corrprofile $PREFIX/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,6 @@ | ||
c_compiler: | ||
- gcc # [linux] | ||
- clang # [osx] | ||
cxx_compiler: | ||
- gxx # [linux] | ||
- clangxx # [osx] |
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,34 @@ | ||
package: | ||
name: corrprofile | ||
version: "1.0" | ||
|
||
source: | ||
url: https://github.com/erinijapranckeviciene/dnpatterntools/files/2450741/v1.0.tar.gz | ||
sha256: 19c46d6bc6a1af70e5a2b4a051aab334026dc38c84b367ea9c445da3fdb21cfe | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- seqan-library | ||
- cmake | ||
|
||
host: | ||
- zlib | ||
- bzip2 | ||
|
||
run: | ||
- zlib | ||
- bzip2 | ||
|
||
test: | ||
commands: | ||
- corrprofile --help | ||
|
||
about: | ||
home: https://github.com/erinijapranckeviciene/dnpatterntools | ||
license: MIT | ||
summary: "Profile of correlations between the patterns of dinucleotide frequency on forward and reverse strands" |
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,14 @@ | ||
#!/bin/bash | ||
|
||
sed 's/CPROGNAME/diprofile/g' CMakeLists.template > CMakeLists.txt | ||
|
||
mkdir -p build | ||
cd build | ||
|
||
SEQAN_INCLUDE_PATH="$CONDA_DEFAULT_ENV/include/" | ||
CMAKE_PREFIX_PATH="$CONDA_DEFAULT_ENV/share/cmake/seqan" | ||
cmake ../ -DCMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH" -DSEQAN_INCLUDE_PATH="$SEQAN_INCLUDE_PATH" | ||
|
||
make | ||
cp diprofile $PREFIX/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,6 @@ | ||
c_compiler: | ||
- gcc # [linux] | ||
- clang # [osx] | ||
cxx_compiler: | ||
- gxx # [linux] | ||
- clangxx # [osx] |
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,34 @@ | ||
package: | ||
name: diprofile | ||
version: "1.0" | ||
|
||
source: | ||
url: https://github.com/erinijapranckeviciene/dnpatterntools/files/2450741/v1.0.tar.gz | ||
sha256: 19c46d6bc6a1af70e5a2b4a051aab334026dc38c84b367ea9c445da3fdb21cfe | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- seqan-library | ||
- cmake | ||
|
||
host: | ||
- zlib | ||
- bzip2 | ||
|
||
run: | ||
- zlib | ||
- bzip2 | ||
|
||
test: | ||
commands: | ||
- diprofile --help | ||
|
||
about: | ||
home: https://github.com/erinijapranckeviciene/dnpatterntools | ||
license: MIT | ||
summary: "Dinucleotide frequency of occurrence in a batch of fasta sequences" |
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,4 @@ | ||
#!/bin/bash | ||
|
||
make fourier | ||
cp fourier $PREFIX/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,28 @@ | ||
package: | ||
name: fourier | ||
version: "1.0" | ||
|
||
source: | ||
url: https://github.com/erinijapranckeviciene/dnpatterntools/files/2450741/v1.0.tar.gz | ||
sha256: 19c46d6bc6a1af70e5a2b4a051aab334026dc38c84b367ea9c445da3fdb21cfe | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
|
||
host: | ||
|
||
run: | ||
|
||
test: | ||
commands: | ||
- fourier --help | ||
|
||
about: | ||
home: https://github.com/erinijapranckeviciene/dnpatterntools | ||
license: MIT | ||
summary: "Periodogram of dinucleotide frequency pattern" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seqan should probably in the host section.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the comment. It was a journey... No. Seqan is C++ header only library. It matters only in compilation. But it depends on zlib and bzip2. The two should be in the host and run.