-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
69 lines (51 loc) · 1.91 KB
/
Makefile
File metadata and controls
69 lines (51 loc) · 1.91 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Rule
# target: prerequisite1 prerequesite2 prerequisite3
# (tab)recipe
# "$<" --- automatic varaible for the first prerequisite
# "$@" --- automatic variable for the target
code/mothur/mothur: code/install_mothur.sh
$<
data/references/silva_seed/silva.seed_v138.align : code/get_silva_seed.sh
$<
data/raw/rrnDB-5.6_16S_rRNA.fasta : code/get_rrndb_files.sh
$< $@
data/raw/rrnDB-5.6.tsv : code/get_rrndb_files.sh
$< $@
data/raw/rrnDB-5.6_pantaxa_stats_NCBI.tsv : code/get_rrndb_files.sh
$< $@
data/raw/rrnDB-5.6_pantaxa_stats_RDP.tsv : code/get_rrndb_files.sh
$< $@
#align sequences
data/raw/rrnDB-5.6_16S_rRNA.align : code/align_sequences.sh\
data/references/silva_seed/silva.seed_v138.align\
data/raw/rrnDB-5.6_16S_rRNA.fasta\
code/mothur/mothur
$<
#extract regions
data/%/rrnDB.align data/%/rrnDB-5.6_16S_rRNA.bad.accnos : code/extract_region.sh\
$< $@
data/v19/rrnDB.unique.align data/v19/rrnDB.count_table : code/count_unique_seqs.sh\
data/v19/rrnDB.align\
code/mothur/mothur
$< $@
data/v4/rrnDB.unique.align data/v4/rrnDB.count_table : code/count_unique_seqs.sh\
data/v4/rrnDB.align\
code/mothur/mothur
$< $@
data/v34/rrnDB.unique.align data/v34/rrnDB.count_table : code/count_unique_seqs.sh\
data/v34/rrnDB.align\
code/mothur/mothur
$< $@
data/v45/rrnDB.unique.align data/v45/rrnDB.count_table : code/count_unique_seqs.sh\
data/v45/rrnDB.align\
code/mothur/mothur
$< $@
data/v45/rrnDB.count_table2: code/remove_headers.sh\
data/v45/rrnDB.count_table
$< data/v45/rrnDB.count_table
data/%/rrnDB.count_tibble: code/convert_count_table_to_tibble.R\
data/%/rrnDB.count_table
README.md : README.rmd
R -e "library(rmarkdown): render("README.rmd")"
exploratory/genome_sens_spec.md : exploratory/genome_sens_spec.Rmd
R -e "library(rmarkdown): render("exploratory/genome_sens_spec.Rmd")"