1c11d7389b8d73429744826cd6ef60e51d02fafa
examples.md
... | ... | @@ -9,6 +9,7 @@ The following pages provide usage info and examples for select applications in t |
9 | 9 | - [Arp/Warp registration](examples/arpwarp_registration) |
10 | 10 | - [CARELESS](examples/careless) |
11 | 11 | - [DiffDock](examples/diffdock) |
12 | +- [DomainSeeker](examples/DomainSeeker) |
|
12 | 13 | - [EMAN2 with Theano for Neural Network Particle Picking](examples/EMAN2_w_theano) |
13 | 14 | - [EMBuild](examples/embuild) |
14 | 15 | - [GTalign](examples/gtalign) |
examples/DomainSeeker.md
... | ... | @@ -0,0 +1,47 @@ |
1 | +DomainSeeker Example |
|
2 | +Feb 26, 2025 |
|
3 | + |
|
4 | +``` |
|
5 | +#!/usr/bin/env bash |
|
6 | + |
|
7 | +## SBGrid DomainSeeker example |
|
8 | +## Args: none |
|
9 | +## |
|
10 | +## James Vincent - help@sbgrid.org |
|
11 | +## Feb 26, 2025 |
|
12 | + |
|
13 | +# ACKNOWLEDGE |
|
14 | + |
|
15 | +# If your use of SBGrid compiled software was an important element in |
|
16 | +# your publication, please include the following statement in your work: |
|
17 | +# "Software used in the project was installed and configured by SBGrid |
|
18 | +# (cite: eLife 2013;2:e01456, Collaboration gets the most out of software.) |
|
19 | + |
|
20 | + |
|
21 | +source /programs/sbgrid.shrc |
|
22 | +export DOMAINSEEKER_X=20250204 |
|
23 | + |
|
24 | +echo -e "\n## domainseeker version info ##\n" |
|
25 | +sbgrid-info -l domainseeker |
|
26 | + |
|
27 | +echo -e "\n## domainseeker callable programs##\n" |
|
28 | +sbgrid-list domainseeker |
|
29 | + |
|
30 | +## Copy DomainSeeker provided Example directory to local dir |
|
31 | +cp -r /programs//x86_64-linux//domainseeker/20250204/DomainSeeker/Example ./ |
|
32 | + |
|
33 | +## Run test from the DomainSeeker provided Example directory |
|
34 | +cd Example |
|
35 | + |
|
36 | +echo -e "\n## domainseeker sample call##\n" |
|
37 | +fetch_pdb_pae.py protein_list.txt . |
|
38 | + |
|
39 | +parse_with_pae.py pdb_files pae_files domain_files |
|
40 | +fit_with_chimerax.py domain_files em_data fit_out 0.001 7 200 16 |
|
41 | +score_rank.py domain_files em_data fit_out 0.001 -0.0001 0.0001 7 16 10 50 |
|
42 | + |
|
43 | +#get_fitted_domain.py domain_dir fitout_dir domain_list |
|
44 | + |
|
45 | + |
|
46 | + |
|
47 | +``` |