-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.gitignore
46 lines (42 loc) · 1.19 KB
/
.gitignore
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
40
41
42
43
44
45
46
**/__pycache__/*
**/.ipynb_checkpoints/*
*.egg-info*
# don't track GO analysis files, they are fairly large
01_explore_data/genes_ncbi_9606_proteincoding.py
01_explore_data/go_data/*
01_explore_data/go_output/*
# don't track large data files
# these can all be generated de novo using scripts in 00_download_data
data/raw/*
data/compressed_data/*
data/expression_confusion_matrix.tsv
data/exp_compressed/*
data/final_models/*.zip
data/final_models/pca/*
data/HumanMethylation450_15017482_v1-2.csv
data/methylation_27k*.tsv
data/methylation_27k_filtered_probe_types.txt
data/methylation_450k*.pkl
data/methylation_preprocessed/*
data/me_compressed/*
data/me_preprocessed/*
data/msi_data/*
data/sample_info/*_me_450k_*
data/sample_info/*_mutation_*
data/sample_info/*_mut_sigs_*
data/sample_info/*_rppa_*
data/significant_genes/*
data/tcga_mirna_matrix_processed.tsv
data/tcga_rppa_matrix_processed.tsv
data/tcga_expression_matrix_processed.tsv.gz
data/tcga_methylation_matrix_processed.tsv.gz
data/tcga_wes_sbs_mutational_signatures.tsv
data/pancancer_data.pkl
data/vogelstein_preds/*
# don't track images files
figures/*
figures_pre_revision/*
**/images/*
# don't track results files
**/results/*
**/gene_counts/*