-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile_SupportingInfo
28 lines (22 loc) · 1.69 KB
/
Makefile_SupportingInfo
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
####################################################################################
# (C) 2016 Tyler W. H. Backman
# Purpose: Supporting Information for Target Selectivity Manuscript
####################################################################################
# Note this is a project workflow (in comments) mixed in with actual analysis steps
# (in Makefile syntax)
# generate file with Target selectivity, cluster selectivity,
# domain selectivity, and Promiscuity probabilities or all highly screened active compounds
working/supportingInfo_promiscuity.tab: src/supportingInfo_promiscuity.R working/selectivityCountsIndividual.txt working/selectivityCountskClust.txt working/selectivityCountsdomains.txt working/promiscuityProbability.tab working/highlyScreenedCids.txt working/activeCids.txt
$^ $@
# generate Fully screened compound vs target cluster binary matrix
working/supportingInfo_fullyScreened.tab: src/supportingInfo_fullyScreened.R working/fullyScreened.RData working/clusterAnnotations.csv
$^ $@
# Purpose: produce list of Pfam domains including median target, cluster, and domain selectivities for FDA approved and non-FDA compounds
working/supportingInfo_domains.tab: src/supportingInfo_domains.R working/targetSelectivityByDomain.tab
$^ $@
# Purpose: produce bicluster lists for supplement
working/supportingInfo_biclusterCids.xls: src/supportingInfo_biclusters.R working/biClusters.RData working/clusterAnnotations.csv
$^ $@ working/supportingInfo_biclusterTargets.xls
# Purpose: produce list of novel drug-target pairs
working/supportingInfo_novelTargets.xls: src/supportingInfo_novelTargets.R working/drugComparisonMatrix.RData working/clusterAnnotations.csv
$^ $@