Skip to content
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

initial purge_haplotigs commit #11049

Merged
merged 4 commits into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions recipes/purge_haplotigs/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

mkdir -p "$PREFIX/bin"

cp -r bin/ $PREFIX
cp -r scripts/ $PREFIX
cp -r lib/ $PREFIX
cp -r test/ $PREFIX
46 changes: 46 additions & 0 deletions recipes/purge_haplotigs/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set version = "1.0.1" %}
{% set build = "0" %}
{% set tarball = "https://bitbucket.org/mroachawri/purge_haplotigs/get/minimap2.tar.gz" %}
mroach-awri marked this conversation as resolved.
Show resolved Hide resolved
{% set sha256 = "ae31483509afb26a8c2100b0c0bc1a066b80d130bbdab06cd55e3c347d22f7c4" %}

package:
name: purge_haplotigs
version: '{{ version }}'

source:
url: '{{ tarball }}'
sha256: '{{ sha256 }}'

build:
number: '{{ build }}'

requirements:
build:
run:
- perl >=5.22.0
- samtools >=1.3.1
- bedtools >=2.25.0
- r-base >=3.4.1
- r-ggplot2 >=2.2.1
- minimap2 >=2.12
- mummer4 >=4.0.0beta2
- make >=4.2.1

test:
commands:
- purge_haplotigs help
- minimap2 -h
- samtools --help
- bedtools -h
- nucmer -h
- make -h
- Rscript -e 'require(ggplot2)'
- perl -e 'use FindBin;use Getopt::Long;use threads;use Thread::Semaphore;use Thread::Queue;use List::Util;'


about:
home: https://bitbucket.org/mroachawri/purge_haplotigs/
license: MIT
license_family: MIT
license_file: LICENSE
summary: Pipeline to help with curating heterozygous diploid genome assemblies.