-
Notifications
You must be signed in to change notification settings - Fork 10
/
Snakefile
786 lines (691 loc) · 26.7 KB
/
Snakefile
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
import os
from pathlib import Path
from ProteinCartography import config_utils
# Default pipeline configuration parameters are in this file
# If you create a new yml file and use the --configfile flag,
# options in that new file overwrite the defaults.
configfile: "./config.yml"
# the mode in which to run the pipeline (either 'search' or 'cluster')
MODE = config_utils.Mode(config["mode"])
# basic configuration parameters common to both search and cluster modes
INPUT_DIR = Path(config["input_dir"])
OUTPUT_DIR = Path(config["output_dir"])
ANALYSIS_NAME = config["analysis_name"]
TAXON_FOCUS = config["taxon_focus"]
PLOTTING_MODES = config["plotting_modes"]
# in search mode, SEARCH_MODE_INPUT_PROTIDS are the IDs of the input proteins that are used
# for the similarity searches; in cluster mode, this is simply an empty list
# in both modes, KEY_PROTIDS are the IDs of the proteins that are highlighted
# in the final analysis plots
SEARCH_MODE_INPUT_PROTIDS, KEY_PROTIDS = config_utils._get_protids(config)
# the features-override file is an optional user-provided TSV file used to provide metadata
# for specific proteins; in search mode, it overrides any metadata downloaded by UniProt
FEATURES_OVERRIDE_FILE = config_utils._get_features_override_file(config)
# the features file is specific to, and required in, cluster mode; it provides uniprot-like metadata
# for all of the input proteins (since, in cluster mode, metadata is not downloaded from UniProt)
FEATURES_FILE = config_utils._get_features_file(config)
BENCHMARKS_DIR = OUTPUT_DIR / "benchmarks"
# results from running blastp with the input proteins
BLAST_RESULTS_DIR = OUTPUT_DIR / "blast_results"
# results from calling the foldseek web API with the input proteins
FOLDSEEK_RESULTS_DIR = OUTPUT_DIR / "foldseek_results"
# metadata related to the hits (proteins) from blast and foldseek
PROTEIN_FEATURES_DIR = OUTPUT_DIR / "protein_features"
# PDBs downloaded from AlphaFold
DOWNLOADED_PROTEIN_STRUCTURES_DIR = OUTPUT_DIR / "protein_structures"
# the directory containing the PDB files to assess and cluster (this is mode-dependent)
ANALYZED_PROTEIN_STRUCTURES_DIR = (
DOWNLOADED_PROTEIN_STRUCTURES_DIR if MODE == config_utils.Mode.SEARCH else INPUT_DIR
)
# results from running foldseek to cluster the PDBs
FOLDSEEK_CLUSTERING_DIR = OUTPUT_DIR / "foldseek_clustering_results"
# results from calculating TM-scores with foldseek
FOLDSEEK_TMSCORES_DIR = OUTPUT_DIR / "key_protid_tmscores_results"
# final output results (plots and aggregated TSV files)
FINAL_RESULTS_DIR = OUTPUT_DIR / "final_results"
# search-mode-specific parameters
# note: although these parameters are only used in search mode, we can assume they exist here
# because they are defined in the base config file, which snakemake always loads
# (and which the user-defined config can only override, not replace)
MAX_BLAST_HITS = int(config["max_blast_hits"])
BLAST_EVALUE = float(config["blast_evalue"])
BLAST_WORD_SIZE = int(config["blast_word_size"])
BLAST_WORD_SIZE_BACKOFF = int(config["blast_word_size_backoff"])
BLAST_NUM_ATTEMPTS = int(config["blast_num_attempts"])
FOLDSEEK_SERVER_URL = config["foldseek_server_url"]
FOLDSEEK_DATABASES = config["foldseek_databases"]
MAX_FOLDSEEK_HITS = int(config["max_foldseek_hits"])
MAX_STRUCTURES = int(config["max_structures"])
MIN_LENGTH = int(config["min_length"])
MAX_LENGTH = int(config["max_length"])
UNIPROT_ADDITIONAL_FIELDS = config["uniprot_additional_fields"]
wildcard_constraints:
plotting_mode="|".join(PLOTTING_MODES),
protid="|".join(SEARCH_MODE_INPUT_PROTIDS + KEY_PROTIDS),
rule make_pdb:
"""
Use the ESMFold API query to generate a PDB file from a fasta file.
Note: we mark the input FASTA file as `ancient` to prevent snakemake from running this rule
when the PDB file does exist but has a last-modified time prior to that of the FASTA file;
because an extant PDB file is, by definition, user-provided, we can assume that it is correct.
"""
input:
fasta_file=ancient(INPUT_DIR / "{protid}.fasta"),
output:
pdb_file=INPUT_DIR / "{protid}.pdb",
benchmark:
BENCHMARKS_DIR / "{protid}.make_pdb.txt"
conda:
"envs/web_apis.yml"
shell:
"""
python ProteinCartography/esmfold_apiquery.py --input {input.fasta_file} --output {output.pdb_file}
"""
rule copy_pdb:
"""
Copies existing or generated PDBs to the protein structures folder.
"""
input:
INPUT_DIR / "{protid}.pdb",
output:
DOWNLOADED_PROTEIN_STRUCTURES_DIR / "{protid}.pdb",
shell:
"""
cp {input} {output}
"""
rule run_blast:
"""
Using files located in the input directory, run `blastp` using the remote BLAST API.
Large proteins will cause remote BLAST to fail;
you can still perform a manual BLAST search to get around this.
"""
input:
fasta_file=INPUT_DIR / "{protid}.fasta",
output:
blast_results=BLAST_RESULTS_DIR / "{protid}.blast_results.tsv",
benchmark:
BENCHMARKS_DIR / "{protid}.run_blast.txt"
conda:
"envs/blast.yml"
shell:
"""
python ProteinCartography/run_blast.py \
--query {input.fasta_file} \
--out {output.blast_results} \
--max_target_seqs {MAX_BLAST_HITS} \
--word_size {BLAST_WORD_SIZE} \
--word_size_backoff {BLAST_WORD_SIZE_BACKOFF} \
--num_attempts {BLAST_NUM_ATTEMPTS} \
--evalue {BLAST_EVALUE}
"""
rule extract_blast_hits:
"""
Extracts the top hits from the BLAST results file.
"""
input:
blast_results=BLAST_RESULTS_DIR / "{protid}.blast_results.tsv",
output:
blast_hits=BLAST_RESULTS_DIR / "{protid}.blast_hits.refseq.txt",
benchmark:
BENCHMARKS_DIR / "{protid}.extract_blast_hits.txt"
conda:
"envs/pandas.yml"
shell:
"""
python ProteinCartography/extract_blast_hits.py \
--input {input.blast_results} \
--output {output.blast_hits}
"""
rule map_refseq_ids:
"""
Map a list of RefSeq IDs to UniProt IDs using the Uniprot ID mapping API or bioservices.
"""
input:
blast_hits=rules.extract_blast_hits.output.blast_hits,
output:
blast_hits_uniprot_ids=BLAST_RESULTS_DIR / "{protid}.blast_hits.uniprot.txt",
benchmark:
BENCHMARKS_DIR / "{protid}.map_refseq_ids.txt"
conda:
"envs/web_apis.yml"
shell:
"""
python ProteinCartography/map_refseq_ids.py \
--input {input.blast_hits} \
--output {output.blast_hits_uniprot_ids}
"""
rule run_foldseek:
"""
Queries Foldseek using the web API.
The script accepts an input file ending in '.pdb' and returns an output file ending in '.tar.gz'.
The script also accepts a `--mode` flag of either '3diaa' (default) or 'tmalign'.
After running, untars the files and extracts hits.
Note: the foldseek web API returns a limited number of hits; up to 1000 per database
"""
input:
pdb_file=INPUT_DIR / "{protid}.pdb",
output:
foldseek_output=FOLDSEEK_RESULTS_DIR / "{protid}.fsresults.tar.gz",
m8_files_dir=directory(FOLDSEEK_RESULTS_DIR / "{protid}"),
m8_files=expand(
FOLDSEEK_RESULTS_DIR / "{{protid}}" / "alis_{db}.m8",
db=FOLDSEEK_DATABASES,
),
conda:
"envs/web_apis.yml"
benchmark:
BENCHMARKS_DIR / "{protid}.run_foldseek.txt"
shell:
"""
python ProteinCartography/foldseek_apiquery.py \
--input {input.pdb_file} \
--output {output.foldseek_output} \
--server {FOLDSEEK_SERVER_URL} \
--database {FOLDSEEK_DATABASES}
tar -xvf {output.foldseek_output} -C {output.m8_files_dir}
"""
rule extract_foldseek_hits:
input:
m8_files=rules.run_foldseek.output.m8_files,
output:
foldseek_hits=FOLDSEEK_RESULTS_DIR / "{protid}.foldseek_hits.txt",
conda:
"envs/pandas.yml"
shell:
"""
python ProteinCartography/extract_foldseek_hits.py \
--input {input.m8_files} \
--output {output.foldseek_hits} \
--max-num-hits {MAX_FOLDSEEK_HITS}
"""
rule aggregate_foldseek_fraction_seq_identity:
"""
Pulls the foldseek fraction sequence identity (fident) from the Foldseek results files
for each input protein.
This will probably be replaced in the future by an all-v-all sequence identity comparison
using FAMSA, WITCH, or other approach.
"""
input:
m8_files=rules.run_foldseek.output.m8_files,
output:
fident_features=PROTEIN_FEATURES_DIR / "{protid}_fident_features.tsv",
benchmark:
BENCHMARKS_DIR / "{protid}.aggregate_foldseek_fident.txt"
conda:
"envs/pandas.yml"
shell:
"""
python ProteinCartography/aggregate_foldseek_fraction_seq_identity.py \
--input {input.m8_files} \
--output {output.fident_features} \
--protid {wildcards.protid}
"""
rule aggregate_hits:
"""
Take all Uniprot ID lists and make them one big ID list, removing duplicates.
"""
input:
expand(rules.map_refseq_ids.output.blast_hits_uniprot_ids, protid=SEARCH_MODE_INPUT_PROTIDS),
expand(rules.extract_foldseek_hits.output.foldseek_hits, protid=SEARCH_MODE_INPUT_PROTIDS),
output:
aggregated_hits=PROTEIN_FEATURES_DIR / "aggregated_hits.txt",
benchmark:
BENCHMARKS_DIR / "aggregate_hits.txt"
shell:
"""
python ProteinCartography/aggregate_hits.py --input {input} --output {output}
"""
rule fetch_uniprot_metadata:
"""
Query Uniprot for the aggregated hits and download all metadata as a big ol' TSV.
"""
input:
rules.aggregate_hits.output.aggregated_hits,
output:
uniprot_features=PROTEIN_FEATURES_DIR / "uniprot_features.tsv",
benchmark:
BENCHMARKS_DIR / "fetch_uniprot_metadata.txt"
conda:
"envs/web_apis.yml"
shell:
"""
python ProteinCartography/fetch_uniprot_metadata.py \
--input {input} \
--output {output.uniprot_features} \
--additional-fields {UNIPROT_ADDITIONAL_FIELDS}
"""
rule filter_aggregated_hits:
"""
Use the metadata features from Uniprot to filter hits
based on sequence status, fragment, and size.
"""
input:
rules.fetch_uniprot_metadata.output.uniprot_features,
output:
filtered_aggregated_hits=PROTEIN_FEATURES_DIR / "filtered_aggregated_hits.txt",
benchmark:
BENCHMARKS_DIR / "filter_aggregated_hits.txt"
conda:
"envs/pandas.yml"
shell:
"""
python ProteinCartography/filter_aggregated_hits.py \
--input {input} \
--output {output.filtered_aggregated_hits} \
--min-length {MIN_LENGTH} \
--max-length {MAX_LENGTH} \
--excluded-protids {SEARCH_MODE_INPUT_PROTIDS}
"""
checkpoint download_pdbs:
"""
Download all PDB files from AlphaFold
"""
input:
rules.filter_aggregated_hits.output.filtered_aggregated_hits,
output:
protein_structures_dir=directory(DOWNLOADED_PROTEIN_STRUCTURES_DIR),
benchmark:
BENCHMARKS_DIR / "download_pdbs.txt"
conda:
"envs/web_apis.yml"
shell:
"""
python ProteinCartography/download_pdbs.py \
--input {input} \
--output {output.protein_structures_dir} \
--max-structures {MAX_STRUCTURES}
"""
def get_pdb_filepaths(wildcards):
"""
Returns a list of all of the PDB files to use for the clustering analysis.
In search mode, this function references the `download_pdbs` checkpoint, triggering it to run,
and then returns a list of all of the resulting downloaded PDB files
as well as the PDB files corresponding to the input proteins.
In cluster mode, this function simply returns the list of all PDB files in the input directory.
"""
if MODE == config_utils.Mode.SEARCH:
# note: referencing the `download_pdbs` checkpoint here is essential,
# because this is what 'tells' snakemake to run the checkpoint
pdb_dirpath = checkpoints.download_pdbs.get(**wildcards).output.protein_structures_dir
pdb_filepaths = sorted(Path(pdb_dirpath).glob("*.pdb"))
# append the paths to the PDB files corresponding to the input proteins
# note: this triggers the `copy_pdb` rule to copy the input PDB files from `INPUT_DIR`
# to `DOWNLOADED_PROTEIN_STRUCTURES_DIR`
pdb_filepaths += expand(
DOWNLOADED_PROTEIN_STRUCTURES_DIR / "{protid}.pdb", protid=SEARCH_MODE_INPUT_PROTIDS
)
elif MODE == config_utils.Mode.CLUSTER:
# in cluster mode, we do not need to download any PDB files
# (as they are provided by the user), so we do not reference the `download_pdbs` checkpoint
pdb_filepaths = sorted(INPUT_DIR.glob("*.pdb"))
return pdb_filepaths
rule assess_pdbs:
"""
Calculates the quality of all PDBs
"""
input:
get_pdb_filepaths,
output:
pdb_features=PROTEIN_FEATURES_DIR / "pdb_features.tsv",
benchmark:
BENCHMARKS_DIR / "assess_pdbs.txt"
conda:
"envs/plotting.yml"
shell:
"""
python ProteinCartography/assess_pdbs.py \
--input {ANALYZED_PROTEIN_STRUCTURES_DIR} \
--output {output.pdb_features}
"""
rule foldseek_clustering:
"""
Runs foldseek all-v-all TM-score comparison and foldseek clustering on all of the PDB files.
"""
input:
get_pdb_filepaths,
output:
all_by_all_tmscores=FOLDSEEK_CLUSTERING_DIR / "all_by_all_tmscore_pivoted.tsv",
struclusters_features=FOLDSEEK_CLUSTERING_DIR / "struclusters_features.tsv",
foldseek_database=FOLDSEEK_CLUSTERING_DIR / "temp" / "temp_db",
conda:
"envs/foldseek.yml"
resources:
mem_mb=32 * 1000,
threads: 16
benchmark:
BENCHMARKS_DIR / "foldseek_clustering.txt"
shell:
"""
python ProteinCartography/foldseek_clustering.py \
--query-folder {ANALYZED_PROTEIN_STRUCTURES_DIR} \
--results-folder {FOLDSEEK_CLUSTERING_DIR}
"""
rule copy_key_protid_pdbs:
"""
Copies existing or generated PDBs corresponding to the 'key' protids
into a separate folder for the Foldseek TM-score calculation.
Note: the PDB files are copied within the shell script of this rule
(rather than at the snakemake level via a parametrized rule)
because snakemake does not allow an input file to be in a directory
that is also itself an output of another rule.
Here, the PDB files copied by this rule may be the output of the `copy_pdb` or `make_pdb` rules,
but they are in the `DOWNLOADED_PROTEIN_STRUCTURES_DIR` directory,
which is itself the output of the `download_pdbs` rule.
"""
input:
get_pdb_filepaths,
output:
dirpath=directory(FOLDSEEK_TMSCORES_DIR),
shell:
"""
mkdir -p "{output.dirpath}"
for protid in {KEY_PROTIDS}; do
cp "{ANALYZED_PROTEIN_STRUCTURES_DIR}/${{protid}}.pdb" "{output.dirpath}"
done
"""
rule calculate_key_protid_tmscores:
"""
Generates complete TM-score comparisons for each
input protein against all proteins in the dataset.
"""
input:
pdb_dirpath=rules.copy_key_protid_pdbs.output.dirpath,
foldseek_database=rules.foldseek_clustering.output.foldseek_database,
output:
key_protid_tmscores=PROTEIN_FEATURES_DIR / "key_protid_tmscore_features.tsv",
conda:
"envs/foldseek.yml"
benchmark:
BENCHMARKS_DIR / "calculate_key_protid_tmscores.txt"
shell:
"""
python ProteinCartography/calculate_key_protid_tmscores.py \
--query-database {input.foldseek_database} \
--target-folder {input.pdb_dirpath} \
--results-folder {input.pdb_dirpath} \
--features-file {output.key_protid_tmscores}
"""
rule dim_reduction:
"""
Perform dimensionality reduction, saving as an embedding matrix and a TSV
Write a set of functions to return Dataframes for interactive compute
Write helper functions to save the dataframes only called by main()
"""
input:
rules.foldseek_clustering.output.all_by_all_tmscores,
output:
all_by_all_tmscores=FOLDSEEK_CLUSTERING_DIR
/ "all_by_all_tmscore_pivoted_{plotting_mode}.tsv",
conda:
"envs/analysis.yml"
benchmark:
BENCHMARKS_DIR / "{plotting_mode}.dim_reduction.txt"
shell:
"""
python ProteinCartography/dim_reduction.py --input {input} --mode {wildcards.plotting_mode}
"""
rule leiden_clustering:
"""
Performs Leiden clustering on the data using scanpy's implementation.
"""
input:
rules.foldseek_clustering.output.all_by_all_tmscores,
output:
leiden_features=FOLDSEEK_CLUSTERING_DIR / "leiden_features.tsv",
conda:
"envs/analysis.yml"
benchmark:
BENCHMARKS_DIR / "leiden_clustering.txt"
shell:
"""
python ProteinCartography/leiden_clustering.py \
--input {input} \
--output {output.leiden_features}
"""
rule calculate_concordance:
"""
Currently, this subtracts the fraction sequence identity from the TM-score
to get a measure of whether something is more similar in sequence or structure.
We're working on developing some kind of test statistic that evaluates the significance
of this difference from some expectation.
"""
input:
distance_features=rules.calculate_key_protid_tmscores.output.key_protid_tmscores,
fident_features=rules.aggregate_foldseek_fraction_seq_identity.output.fident_features,
output:
concordance_features=PROTEIN_FEATURES_DIR / "{protid}_concordance_features.tsv",
benchmark:
BENCHMARKS_DIR / "{protid}.calculate_concordance.txt"
conda:
"envs/pandas.yml"
shell:
"""
python ProteinCartography/calculate_concordance.py \
--tmscore-file {input.distance_features} \
--fident-file {input.fident_features} \
--output {output.concordance_features} \
--protid {wildcards.protid}
"""
rule get_source_of_hits:
"""
Checks the blast hits and foldseek hits to determine the source of each protein.
"""
input:
tm_scores=rules.foldseek_clustering.output.all_by_all_tmscores,
hit_files=(
expand(
rules.extract_foldseek_hits.output.foldseek_hits,
protid=SEARCH_MODE_INPUT_PROTIDS,
)
+ expand(
rules.map_refseq_ids.output.blast_hits_uniprot_ids,
protid=SEARCH_MODE_INPUT_PROTIDS,
)
),
output:
source_features=PROTEIN_FEATURES_DIR / "source_features.tsv",
benchmark:
BENCHMARKS_DIR / "get_source_of_hits.txt"
conda:
"envs/pandas.yml"
shell:
"""
python ProteinCartography/get_source_of_hits.py \
--input {input.tm_scores} \
--hit-files {input.hit_files} \
--output {output.source_features} \
--keyids {KEY_PROTIDS}
"""
def get_aggregate_features_input(*_):
"""
Returns the paths to all TSV files that are used as input to the `aggregate_features` rule
"""
# Inputs common to both search and cluster modes.
common_inputs = [
rules.assess_pdbs.output.pdb_features,
rules.foldseek_clustering.output.struclusters_features,
rules.leiden_clustering.output.leiden_features,
rules.calculate_key_protid_tmscores.output.key_protid_tmscores,
]
common_inputs += expand(
rules.aggregate_foldseek_fraction_seq_identity.output.fident_features, protid=KEY_PROTIDS
)
common_inputs += expand(
rules.calculate_concordance.output.concordance_features, protid=KEY_PROTIDS
)
search_mode_inputs = [
rules.fetch_uniprot_metadata.output.uniprot_features,
rules.get_source_of_hits.output.source_features,
]
cluster_mode_inputs = [FEATURES_FILE]
if MODE == config_utils.Mode.SEARCH:
return common_inputs + search_mode_inputs
elif MODE == config_utils.Mode.CLUSTER:
return common_inputs + cluster_mode_inputs
rule aggregate_features:
"""
Aggregate all TSV features provided by user in some specific directory, making one big TSV
"""
input:
get_aggregate_features_input,
output:
aggregated_features=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_aggregated_features.tsv",
benchmark:
BENCHMARKS_DIR / "aggregate_features.txt"
conda:
"envs/pandas.yml"
shell:
"""
python ProteinCartography/aggregate_features.py \
--input {input} \
--output {output.aggregated_features} \
--features-override-file {FEATURES_OVERRIDE_FILE}
"""
rule plot_interactive:
"""
Generate interactive scatter plot HTML programmatically based on user-input parameters
Takes the TSV from rule aggregate_features and select default columns
User should be able to call this module and pass their own functions
to parse particular TSV columns
Should have means to set a palette for each individual plot type, maybe as JSON?
"""
input:
tm_scores=rules.dim_reduction.output.all_by_all_tmscores,
features=rules.aggregate_features.output.aggregated_features,
output:
html=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_aggregated_features_{{plotting_mode}}.html",
conda:
"envs/plotting.yml"
benchmark:
BENCHMARKS_DIR / "{plotting_mode}.plot_interactive.txt"
shell:
"""
python ProteinCartography/plot_interactive.py \
--dimensions {input.tm_scores} \
--features {input.features} \
--output {output.html} \
--dimensions-type {wildcards.plotting_mode} \
--keyids {KEY_PROTIDS} \
--taxon-focus {TAXON_FOCUS}
"""
rule plot_similarity_leiden:
"""
Plots a similarity score matrix for Leiden clusters.
For each cluster, calculates the mean TM-score of all structures in that cluster
versus all other clusters.
The diagonal of the plot shows how similar proteins are within a given cluster.
The other cells show how similar other clusters are to each other.
"""
input:
tm_scores=rules.foldseek_clustering.output.all_by_all_tmscores,
features=rules.leiden_clustering.output.leiden_features,
output:
tsv=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_leiden_similarity.tsv",
html=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_leiden_similarity.html",
params:
column="LeidenCluster",
conda:
"envs/plotting.yml"
benchmark:
BENCHMARKS_DIR / "plot_similarity_leiden.txt"
shell:
"""
python ProteinCartography/plot_cluster_similarity.py \
--matrix-file {input.tm_scores} \
--features-file {input.features} \
--features-column {params.column} \
--output-tsv {output.tsv} \
--output-html {output.html}
"""
rule plot_similarity_strucluster:
"""
Plots a similarity score matrix for Foldseek's structural clusters.
For each cluster, calculates the mean TM-score of all structures in that cluster
versus all other clusters.
The diagonal of the plot shows how similar proteins are within a given cluster.
The other cells show how similar other clusters are to each other.
TODO (KC): this rule is almost identical to `plot_similarity_leiden`
"""
input:
tm_scores=rules.foldseek_clustering.output.all_by_all_tmscores,
features=rules.foldseek_clustering.output.struclusters_features,
output:
tsv=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_strucluster_similarity.tsv",
html=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_strucluster_similarity.html",
params:
column="StruCluster",
conda:
"envs/plotting.yml"
benchmark:
BENCHMARKS_DIR / "plot_similarity_strucluster.txt"
shell:
"""
python ProteinCartography/plot_cluster_similarity.py \
--matrix-file {input.tm_scores} \
--features-file {input.features} \
--features-column {params.column} \
--output-tsv {output.tsv} \
--output-html {output.html}
"""
rule plot_semantic_analysis:
"""
Plots a semantic analysis chart for groups within the data.
"""
input:
features=rules.aggregate_features.output.aggregated_features,
output:
pdf=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_semantic_analysis.pdf",
html=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_semantic_analysis.html",
params:
agg_column="LeidenCluster",
annot_column="'Protein names'",
conda:
"envs/plotting.yml"
benchmark:
BENCHMARKS_DIR / "plot_semantic_analysis.txt"
shell:
"""
python ProteinCartography/semantic_analysis.py \
--features-file {input.features} \
--agg-column {params.agg_column} \
--annot-column {params.annot_column} \
--output {output.pdf} \
--interactive {output.html} \
--analysis-name {ANALYSIS_NAME}
"""
rule plot_cluster_distributions:
"""
Plots distributions of key values per cluster for each input protein.
"""
input:
features=rules.aggregate_features.output.aggregated_features,
output:
svg=FINAL_RESULTS_DIR / f"{ANALYSIS_NAME}_{{protid}}_distribution_analysis.svg",
conda:
"envs/plotting.yml"
benchmark:
BENCHMARKS_DIR / "plot_cluster_distributions_{protid}.txt"
shell:
"""
python ProteinCartography/plot_cluster_distributions.py \
--input {input.features} \
--output {output.svg} \
--keyid {wildcards.protid}
"""
rule all:
"""
This is a pseudo-rule that defines the final outputs of the pipeline
Note: this rule appears at the end, rather than the beginning, of the snakefile
in order to allow the definition of its inputs in terms of the outputs of other rules
(whose definitions must appear before this rule)
"""
# we use `default_target` to tell snakemake that this is the first rule to run
# (it otherwise defaults to running the first rule in the snakefile)
default_target: True
input:
rules.plot_similarity_leiden.output.html,
rules.plot_similarity_strucluster.output.html,
rules.plot_semantic_analysis.output.html,
rules.plot_semantic_analysis.output.pdf,
expand(rules.plot_interactive.output.html, plotting_mode=PLOTTING_MODES),
expand(rules.plot_cluster_distributions.output.svg, protid=KEY_PROTIDS),