-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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 #3 from bioconda/master
merge with bioconda master
- Loading branch information
Showing
82 changed files
with
2,227 additions
and
272 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 |
---|---|---|
@@ -1,6 +1 @@ | ||
<<<<<<< 66e5051fa837e9c54553b8eeb46fe67d93d5b18b | ||
#recipes/autoconf | ||
======= | ||
recipes/autoconf | ||
recipes/msproteomicstools | ||
>>>>>>> blacklist msproteomicstools | ||
recipes/vsearch |
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 @@ | ||
{% set version = "3_0_10158" %} | ||
{% set root = "pwiz_tools/Bumbershoot/" %} | ||
{% set targets = root~"myrimatch//install "~root~"directag//install "~root~"tagrecon//install "~root~"idpicker//install "~root~"pepitome//install "~root~"quameter//install" %} | ||
|
||
package: | ||
name: bumbershoot | ||
version: {{ version }} | ||
|
||
source: | ||
url: http://teamcity.labkey.org/guestAuth/repository/download/BumbershootSubsetSourceTarball/380430:id/bumbershoot-src-without-t-{{ version }}.tar.bz2 | ||
sha1: 28cd2a1d49e735a631f9315e23b076371e5fb11e | ||
|
||
build: | ||
script: bash -c "./quickbuild.sh -j{{ CPU_COUNT }} address-model=64 runtime-link=shared {{ targets }} && cp build-linux-x86_64/gcc-release-x86_64/* $PREFIX/bin" | ||
skip: True # [osx] | ||
|
||
requirements: | ||
build: | ||
- gcc # [linux] | ||
run: | ||
- libgcc # [linux] | ||
|
||
|
||
about: | ||
home: https://proteowizard.sourceforge.net | ||
license: Apache 2.0 | ||
summary: The Bumbershoot tool suite for analyzing shotgun proteomic data | ||
|
||
test: | ||
commands: | ||
- myrimatch --help | ||
- directag --help | ||
- quameter --help | ||
- pepitome --help |
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 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,10 @@ | ||
#!/bin/bash | ||
|
||
mkdir percobuild && cd percobuild | ||
cmake -DTARGET_ARCH=x86_64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PREFIX -DXML_SUPPORT=ON -DCMAKE_PREFIX_PATH="$PREFIX;$PREFIX/lib" $SRC_DIR | ||
make && make install | ||
cd .. | ||
|
||
mkdir converterbuild && cd converterbuild | ||
cmake -DTARGET_ARCH=x86_64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PREFIX -DBOOST_ROOT=$PREFIX -DBOOST_LIBRARYDIR=$PREFIX/lib -DSERIALIZE="TokyoCabinet" -DCMAKE_PREFIX_PATH=$PREFIX $SRC_DIR/src/converters | ||
make && 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,45 @@ | ||
package: | ||
name: percolator | ||
version: '3.0' | ||
|
||
source: | ||
fn: rel-3-00.tar.gz | ||
url: https://github.com/percolator/percolator/archive/rel-3-00.tar.gz | ||
md5: de87c96643fed652e454ac492ce850b4 | ||
|
||
build: | ||
number: 0 | ||
string: boost_1.62_{{PKG_BUILDNUM}} | ||
skip: True # [osx] | ||
|
||
requirements: | ||
build: | ||
- cmake ==2.8.10.2 | ||
- gcc | ||
- zlib | ||
- boost ==1.62 | ||
- tokyocabinet | ||
- sqlite | ||
- bzip2 | ||
- xerces-c ==3.1.2 | ||
- xsd | ||
run: | ||
- gcc | ||
- zlib | ||
- boost ==1.62 | ||
- tokyocabinet | ||
- sqlite | ||
- bzip2 | ||
- xerces-c ==3.1.2 | ||
- xsd | ||
|
||
|
||
test: | ||
commands: | ||
- percolator --help 2>&1 > /dev/null | grep "Percolator version 3.00" | ||
- msgf2pin --help | ||
|
||
about: | ||
home: https://github.com/percolator/percolator | ||
license: Apache 2.0 | ||
summary: Semi-supervised learning for peptide identification from shotgun proteomics datasets |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
# If it has Build.PL use that, otherwise use Makefile.PL | ||
if [ -f Build.PL ]; then | ||
perl Build.PL | ||
./Build | ||
./Build test | ||
# Make sure this goes in site | ||
./Build install --installdirs site | ||
elif [ -f Makefile.PL ]; then | ||
# Make sure this goes in site | ||
perl Makefile.PL INSTALLDIRS=site | ||
make | ||
make test | ||
make install | ||
else | ||
echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.' | ||
exit 1 | ||
fi | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
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,47 @@ | ||
package: | ||
name: perl-apache-test | ||
version: "1.40" | ||
|
||
source: | ||
fn: Apache-Test-1.40.tar.gz | ||
url: https://cpan.metacpan.org/authors/id/S/SH/SHAY/Apache-Test-1.40.tar.gz | ||
md5: 78e059bccfa0c2f0297ff2fca591eca9 | ||
# patches: | ||
# List any patch files here | ||
# - fix.patch | ||
|
||
# build: | ||
# If this is a new build for the same version, increment the build | ||
# number. If you do not include this key, it defaults to 0. | ||
# number: 1 | ||
|
||
requirements: | ||
build: | ||
- perl-threaded | ||
- perl-pathtools | ||
- perl-extutils-makemaker | ||
|
||
run: | ||
- perl-threaded | ||
- perl-pathtools | ||
|
||
test: | ||
# Perl 'use' tests | ||
imports: | ||
- Apache::Test | ||
|
||
# You can also put a file called run_test.pl (or run_test.py) in the recipe | ||
# that will be run at test time. | ||
|
||
# requires: | ||
# Put any additional test requirements here. For example | ||
# - nose | ||
|
||
about: | ||
home: http://metacpan.org/pod/Apache::Test | ||
license: unknown | ||
summary: 'Special Tests Sequence Failure Finder' | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html for | ||
# more information about meta.yaml |
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,25 @@ | ||
#!/bin/bash | ||
|
||
# If it has Build.PL use that, otherwise use Makefile.PL | ||
if [ -f Build.PL ]; then | ||
perl Build.PL | ||
./Build | ||
#./Build test | ||
# Make sure this goes in site | ||
./Build install --installdirs site | ||
elif [ -f Makefile.PL ]; then | ||
# Make sure this goes in site | ||
perl Makefile.PL INSTALLDIRS=site | ||
make | ||
#make test | ||
make install | ||
else | ||
echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.' | ||
exit 1 | ||
fi | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
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,36 @@ | ||
package: | ||
name: perl-archive-tar | ||
version: 2.18 | ||
|
||
source: | ||
fn: Archive-Tar-2.18.tar.gz | ||
url: http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Archive-Tar-2.18.tar.gz | ||
md5: ed4d4ca0124adece439f5d97b05d3987 | ||
|
||
build: | ||
number: 1 | ||
|
||
requirements: | ||
build: | ||
- perl-threaded | ||
- perl-pathtools | ||
- perl-io-compress | ||
- perl-io-zlib | ||
- perl-test-harness | ||
- perl-test-simple | ||
|
||
run: | ||
|
||
test: | ||
# Perl 'use' tests | ||
imports: | ||
- Archive::Tar | ||
- Archive::Tar::Constant | ||
- Archive::Tar::File | ||
|
||
|
||
about: | ||
home: http://metacpan.org/pod/Archive::Tar | ||
license: perl_5 | ||
summary: 'Manipulates TAR archives' | ||
|
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,25 @@ | ||
#!/bin/bash | ||
|
||
# If it has Build.PL use that, otherwise use Makefile.PL | ||
if [ -f Build.PL ]; then | ||
perl Build.PL | ||
./Build | ||
./Build test | ||
# Make sure this goes in site | ||
./Build install --installdirs site | ||
elif [ -f Makefile.PL ]; then | ||
# Make sure this goes in site | ||
perl Makefile.PL INSTALLDIRS=site | ||
make | ||
make test | ||
make install | ||
else | ||
echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.' | ||
exit 1 | ||
fi | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
Oops, something went wrong.