File tree Expand file tree Collapse file tree 4 files changed +5
-12
lines changed
Expand file tree Collapse file tree 4 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,10 @@ install:
1717 - conda info -a
1818 - conda install conda-build anaconda-client constructor git
1919 - conda build -c terhorst -c conda-forge -c bioconda conda
20- - conda create -n smcpp_install --use-local -c terhorst -c bioconda -c conda-forge smcpp
21- - source activate smcpp_install
22- - smc++ version
23- - test/integration/test.sh `which smc++`
2420 - conda/template.py conda/construct.tpl $VERSION > conda/construct.yaml
25- - source deactivate
2621
22+ before_deploy :
23+ - constructor conda
2724deploy :
2825 - provider : script
2926 script : conda/deploy.sh
Original file line number Diff line number Diff line change 11#! /bin/bash -x
22set -e
33export PATH=" $HOME /miniconda/bin:$PATH "
4- anaconda -t $ANACONDA_TOKEN upload --force $( conda build --output conda)
4+ PKGS=$( conda build -c terhorst -c conda-forge -c bioconda conda)
5+ anaconda -t $ANACONDA_TOKEN upload --force $PKGS
56
67# Next, build
78constructor conda
Original file line number Diff line number Diff line change 6060 - smcpp
6161 - smcpp._smcpp
6262 source_files :
63- - test/integration/test.sh
6463 - example/example.vcf.gz
6564 - example/example.vcf.gz.csi
66- commands :
67- - mkdir example
68- - mv example.* example
69- - ./test.sh smc++
Original file line number Diff line number Diff line change 11#! /bin/bash -x
2- SMC=$1
2+ SMC=$( which smc++ )
33set -e
44$SMC vcf2smc -v example/example.vcf.gz /tmp/example.1.smc.gz 1 msp1:msp_0,msp_1,msp_2
55$SMC vcf2smc -d msp_0 msp_0 example/example.vcf.gz /tmp/example.2.smc.gz 1 msp2:msp_0,msp_3,msp_4
You can’t perform that action at this time.
0 commit comments