File: lumpyexpress.config

package info (click to toggle)
lumpy-sv 0.3.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 296,072 kB
  • sloc: cpp: 9,908; python: 1,768; sh: 1,384; makefile: 365; ansic: 322; perl: 58
file content (22 lines) | stat: -rw-r--r-- 625 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash -e

# general
LUMPY_HOME=~/lumpy-sv

# HEXDUMP is used to determine if a file is a CRAM
HEXDUMP=`which hexdump || true`

LUMPY=`which lumpy || true`
SAMBLASTER=`which samblaster || true`
# either sambamba or samtools is required
SAMBAMBA=`which sambamba || true`
SAMTOOLS=`which samtools || true`

# python 2.7 or newer, must have pysam, numpy installed
PYTHON=`which python || true`

# python scripts
PAIREND_DISTRO=$LUMPY_HOME/scripts/pairend_distro.py
BAMGROUPREADS=$LUMPY_HOME/scripts/bamkit/bamgroupreads.py
BAMFILTERRG=$LUMPY_HOME/scripts/bamkit/bamfilterrg.py
BAMLIBS=$LUMPY_HOME/scripts/bamkit/bamlibs.py