-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
5,876 additions
and
88,496 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
samples: "config/samples.tsv" # .tsv file containing sample names and locations | ||
regions: "config/regions.tsv" # .tsv file containing bed files with regions of interest | ||
|
||
proteinAtlas: "Blood" #RNAtable name | ||
tissue: ["NK_cell", "memory_B_cell", "classical_monocyte", "basophil", "memory_CD4_T_cell", "memory_CD8_T_cell"] # tissues for generating plots | ||
refSample: "BH01" # reference sample for rank correlation comparison | ||
minRL: 120 # minimum read length for calculating WPS | ||
maxRL: 180 # maximum read length for calculating WPS | ||
bpProtection: 120 | ||
|
||
## genome build specific options ## | ||
|
||
GRCh37: | ||
genome: "resources/genome/hg19.fa.genome" #full .genome file | ||
genome_autosomes: "resources/genome/hg19.fa.genome.regular_autosomes" # .genome file reduced to regular autosomes | ||
UCSC_gap: "resources/blacklists/UCSC/UCSC_gap.hg19.bed" # UCSC_gap file in .bed format | ||
transcriptAnno: "resources/annotations/transcriptAnno-GRCh37.103.tsv.gz" # file containing TSSs | ||
|
||
GRCh38: | ||
genome: "resources/genome/hg38.fa.genome" #full .genome file | ||
genome_autosomes: "resources/genome/hg38.fa.genome.regular_autosomes" #.genome file reduced to regular autosome | ||
UCSC_gap: "resources/blacklists/UCSC/UCSC_gap.hg38.bed" # UCSC_gap file in .bed format | ||
transcriptAnno: "resources/annotations/transcriptAnno-GRCh38.103.tsv.gz" # file containing TSSs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ID sample path ref_samples | ||
experimentID testsample1 "/path/to/testsample1.bam" testsample2,testsample3 | ||
experimentID testsample2 "/path/to/testsample2.bam" testsample1,testsample3 | ||
experimentID testsample3 "/path/to/testsample3.bam" testsample1,testsample2 | ||
ID sample path ref_samples genome_build | ||
experimentID testsample1 "/path/to/testsample1.bam" testsample2,testsample3 GRCh37 | ||
experimentID testsample2 "/path/to/testsample2.bam" testsample1,testsample3 GRCh37 | ||
experimentID testsample3 "/path/to/testsample3.bam" testsample1,testsample2 GRCh38 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Resources | ||
|
||
This folder is meant to contain all resources necessary for running the workflow, for example reference sequences or databases. Wherever feasible, they can also be downloaded programmatically via rules defined in the pipeline. | ||
|
||
======= | ||
|
||
## Files | ||
|
||
- resources | ||
- protein_atlas | ||
- RNAtableBlood.tsv.gz (from [https://www.proteinatlas.org/download/rna_blood_cell.tsv.zip](https://www.proteinatlas.org/download/rna_blood_cell.tsv.zip)) | ||
- labels_Blood.tsv | ||
- RNAtableTissue.tsv.gz (from [https://www.proteinatlas.org/download/rna_tissue_consensus.tsv.zip](https://www.proteinatlas.org/download/rna_tissue_consensus.tsv.zip)) | ||
- labels_Tissue.tsv | ||
- RNAtableExtended.tsv.gz (from [https://www.proteinatlas.org/download/rna_tissue_consensus.tsv.zip](https://www.proteinatlas.org/download/rna_tissue_consensus.tsv.zip) and [https://www.proteinatlas.org/download/rna_celline.tsv.zip](https://www.proteinatlas.org/download/rna_celline.tsv.zip)) | ||
- labels_Extended.tsv | ||
- transcriptAnno-GRCh37.103.tsv.gz (unique GeneIDs, not filtered) | ||
- transcriptAnno-GRCh38.103.tsv.gz (unique GeneIDs, not filtered) |
Binary file not shown.
Oops, something went wrong.