-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpipeline_config.sh
40 lines (30 loc) · 1.33 KB
/
pipeline_config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#########################################################################
### THIS CONFIG SCRIPT WILL BE SOURCED IN drug_resistance_pipeline.sh ###
#########################################################################
########################################
### data and source code directories ###
########################################
# directory where source scripts are located
sourcedir=$PWD
# directory where CARD reference database is located
CARD_dir="${sourcedir}/CARD/"
CARD_fasta="${CARD_dir}/nucleotide_fasta_protein_homolog_model.fasta"
##Please add hashtag in the front of "WGS_dir" if you don't run WGS pipeline
WGS_dir="${sourcedir}/example/WGS"
WGS_First="WGS.end1.fq.gz"
WGS_Second="WGS.end2.fq.gz"
##Please add hashtag in the front of "RNAseq_dir" if you don't run RNAseq pipeline
RNAseq_dir="${sourcedir}/example/RNAseq"
RNAseq_First="RNAseq.end1.fq.gz"
RNAseq_Second="RNAseq.end2.fq.gz"
# directory where executable tool files are located
Bowtie2_dir="/pylon2/ci4s87p/sdsubmbl/bowtie2-2.2.1"
Bedtools_dir="/pylon2/ci4s87p/sdsubmbl/BEDTools-Version-2.16.1/bin/"
Samtools_dir="/pylon2/ci4s87p/sdsubmbl/samtools-1.3.1/"
# output directory where all outputs will be stored
output_dir="${sourcedir}/output/"
WGS_outputName="test2.drugRes.WGS00001"
RNASeq_outputName="test2.drugRes.RNAseq00001"
###########
### EOF ###
###########