Switch to unified view

a b/examples/chip-nexus/dataspec.yml
1
fasta_file: ../data/mm10.subset.fa  # reference genome fasta file
2
task_specs:  # specifies multiple tasks (e.g. Oct4, Sox2 Nanog)
3
4
  Oct4:
5
    tracks:
6
      - ../data/chip-nexus/Oct4/counts.pos.subset.bw
7
      - ../data/chip-nexus/Oct4/counts.neg.subset.bw
8
    peaks: ../data/chip-nexus/Oct4/idr-optimal-set.summit.subset.bed.gz
9
  Sox2:
10
    tracks:
11
      - ../data/chip-nexus/Sox2/counts.pos.subset.bw
12
      - ../data/chip-nexus/Sox2/counts.neg.subset.bw
13
    peaks: ../data/chip-nexus/Sox2/idr-optimal-set.summit.subset.bed.gz
14
15
  Nanog: # Nanog is the task name
16
    tracks:
17
      # List of bigwig files (1 or more) corresponding to the task
18
      # The model will predict each track individually (here coverage of
19
      # reads mapping to the positive and negative strand) and
20
      # the contribution scores will be averaged across all of these tracks
21
      - ../data/chip-nexus/Nanog/counts.pos.subset.bw
22
      - ../data/chip-nexus/Nanog/counts.neg.subset.bw
23
24
    # Peaks associated with Nanog task (optional)
25
    # These are used to later run TF-MoDISco for Nanog contrib scores
26
    # only in the Nanog peaks.
27
    peaks: ../data/chip-nexus/Nanog/idr-optimal-set.summit.subset.bed.gz
28
29
bias_specs:  # specifies multiple bias tracks
30
  input:  # first bias track
31
    tracks:  # can specify multiple tracks
32
      - ../data/chip-nexus/patchcap/counts.pos.subset.bw
33
      - ../data/chip-nexus/patchcap/counts.neg.subset.bw
34
    tasks:  # applies to Oct4, Sox2, Nanog tasks
35
      - Oct4
36
      - Sox2
37
      - Nanog
38
  # NOTE: bias_specs don't specify peaks since they are only used
39
  # to correct for biases