-
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
blockclust #12111
Merged
Merged
blockclust #12111
Changes from 15 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a59fc21
added eden 1.1 version used in blockclust
pavanvidem 8dc5441
Update meta.yaml
bgruening 0d67806
eden checksum and test
pavanvidem c34395b
added zlib requirement
pavanvidem 6d4b1e0
add include and lib paths to build.sh
pavanvidem c179986
add include and lib paths to build.sh
pavanvidem 49f0274
modify makefile flags using sed
pavanvidem b597225
modify makefile flags using sed
pavanvidem 5c0dce9
use c++
bgruening 5e910b5
Update build.sh
bgruening 058eed5
Update build.sh
bgruening 2e88d45
LDFLAGS not used in makefile
pavanvidem 39bad96
remove v1.1
pavanvidem cfde9af
add blockclust 1.1.0 recipe
pavanvidem 3fbbf83
skip osx build
pavanvidem 5be3232
added tarball url and checksum; removed conda_build_config.yaml
pavanvidem ad35026
Update meta.yaml
bgruening 758f111
Update meta.yaml
bgruening 9372ae3
Update meta.yaml
bgruening 8f2b8d3
Update meta.yaml
bgruening 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,7 @@ | ||
sed -i.bak "s/CXX=g++//" Makefile | ||
make | ||
mkdir -p ${PREFIX}/bin | ||
mkdir -p ${PREFIX}/share/blockclust_data | ||
cp blockclust scripts/blockclust.py scripts/blockclust_plot.r ${PREFIX}/bin | ||
cp blockclust_data/blockclust.config blockclust_data/rfam_map.txt ${PREFIX}/share/blockclust_data | ||
|
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,39 @@ | ||
package: | ||
name: blockclust | ||
version: 1.1.0 | ||
|
||
source: | ||
git_url: https://github.com/pavanvidem/blockclust | ||
git_rev: c4b8a985fcb615b2b4356a242ff1bc60b672f8e1 | ||
|
||
build: | ||
number: 0 | ||
skip: True # [osx] | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('cxx') }} | ||
run: | ||
- python | ||
- scikit-learn >=0.20.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you probably also need wget as runtime dependency |
||
- r-dendextend >=1.8.0 | ||
- mcl >=14.137 | ||
- eden >=1.1 | ||
- pysam >=0.15.0 | ||
|
||
test: | ||
commands: | ||
blockclust 2>&1 | grep "clustering and classification" >/dev/null | ||
|
||
about: | ||
home: https://github.com/pavanvidem/blockclust | ||
license: GPL | ||
license_file: LICENSE | ||
summary: Efficient clustering and classification of non-coding RNAs from short read RNA-seq profiles. | ||
|
||
extra: | ||
identifiers: | ||
- doi:10.1093/bioinformatics/btu270 | ||
skip-lints: | ||
- uses_git_url | ||
- missing_hash |
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,10 @@ | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/annotations/dm3.tar.gz -P ${PREFIX}/share/blockclust_data | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/annotations/hg19.tar.gz -P ${PREFIX}/share/blockclust_data | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/annotations/mm10.tar.gz -P ${PREFIX}/share/blockclust_data | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/annotations/panTro4.tar.gz -P ${PREFIX}/share/blockclust_data | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/annotations/rheMac3.tar.gz -P ${PREFIX}/share/blockclust_data | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/annotations/celWS235.tar.gz -P ${PREFIX}/share/blockclust_data | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/annotations/tair10.tar.gz -P ${PREFIX}/share/blockclust_data | ||
wget https://github.com/bgruening/download_store/raw/master/blockclust/blockclust-data-1.0/models.tar.gz -P ${PREFIX}/share/blockclust_data | ||
|
||
for i in ${PREFIX}/share/blockclust_data/*.tar.gz; do tar -xf $i -C ${PREFIX}/share/blockclust_data;rm $i;done |
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 @@ | ||
rm -rf ${PREFIX}/share/blockclust_data |
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.
it is recommended to use following url format:
https://github.com/pavanvidem/blockclust/archive/c4b8a985fcb615b2b4356a242ff1bc60b672f8e1.tar.gz
instead of git_url.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.
It is of course even better if you could tag a release.