a b/test/test_project.yaml
1
project_name : "test"
2
project_dir : "test/test_project/"
3
sequencing_runs : 
4
  - name : "Run1"
5
    version : 'v1'
6
    dir : "test/seq_runs/run_v1_single_file"
7
    fastq_path : "{read}.fastq.gz"
8
    library_name : "test_lib0"
9
  - name : "Run2"
10
    version : 'v2'
11
    dir : "test/seq_runs/run_v2_single_file"
12
    fastq_path : "{read}.fastq.gz"
13
    library_name : "test_lib1"
14
  - name : "Run3"
15
    version : 'v2'
16
    dir : "test/seq_runs/run_v2_split"
17
    fastq_path : "{library_prefix}_{split_affix}_{read}_001.fastq.gz"
18
    split_affixes : ["L001", "L002"]
19
    libraries : 
20
      - {library_name: "test_lib1", library_prefix: "lib1"}
21
      - {library_name: "test_lib2", library_prefix: "lib2"}
22
  - name : 'Run4'
23
    version : 'v3'
24
    dir : "test/seq_runs/run_v3"
25
    fastq_path : "Undetermined_S0_{split_affix}_{read}_001.fastq.gz"
26
    split_affixes : ["L001", "L002"]
27
    libraries : 
28
      - {library_name: "test_lib3", library_index: "ATAGAG"}
29
      - {library_name: "test_lib4", library_index: "AGAGGA"}
30
paths : 
31
  bowtie_index : "/Users/averes/Projects/Melton/grch38_test/Homo_sapiens.GRCh38.85.annotated"
32
  python_dir : "/Users/averes/miniconda3/envs/py27/bin/"
33
  samtools_dir : "/Users/averes/software/samtools-1.3.1/bin/"
34
  rsem_dir : ""
35
  java_dir : ""
36
parameters : # OPTIONAL PARAMETERS
37
#   umi_quantification_arguments:
38
#     m : 10 #Ignore reads with more than M alignments, after filtering on distance from transcript end.
39
#     u : 1 #Ignore counts from UMI that should be split among more than U genes.
40
#     d : 600 #Maximal distance from transcript end, NOT INCLUDING THE POLYA TAIL
41
#     split-ambigs: False #If umi is assigned to m genes, add 1/m to each gene's count (instead of 1)
42
#     min_non_polyA: 15 #Require reads to align to this much non-polyA sequence. (Set to 0 to disable filtering on this parameter.)
43
#   output_arguments:
44
#     output_unaligned_reads_to_other_fastq: False
45
#     low_complexity_mask: False
46
#   bowtie_arguments:
47
#     m : 200
48
#     n : 1
49
#     l : 15
50
#     e : 1000
51
  trimmomatic_arguments:
52
    LEADING: "28"
53
    SLIDINGWINDOW: "4:20"
54
    MINLEN: "16"