-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_nf.sh
executable file
·48 lines (46 loc) · 1.17 KB
/
run_nf.sh
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
#!/bin/bash
now=`date +"%s"`
data=example
~/nextflow run pipeline.nf \
-resume \
-profile standard,withdocker \
--targetSequences sequences/$data.fasta \
--alignSequences \
--buildTreeEvo \
--efoldmine \
--disomine \
--plotBiophysicalFeatures \
--fetchStructures \
--csubst \
--branchIds '1,5' \
--eteEvol 'M8' \
--outGroup 'Cya_NS01' \
--selectedProteins 'AncNode14,Syn_BIOS_U3' \
--buildLogo \
--plotTree 'evo'\
>> results/$data-$now.nflog
sessionName=$(sed -n '2s/.*\[\(.*\)\].*/\1/p' results/$data-$now.nflog)
~/nextflow log | grep $sessionName >> results/$data-$now.nflog
#-resume \
#-profile standard, withdocker, withsingularity, withconda \
#General Data Preparation
# --type aa \
# --clustering 1 \
# --relabel \
# --alignSequences \
# --buildTreeEvo \
#B2Btools selection
# --efoldmine \
# --disomine \
# --agmata \
#Evol predictions
# --csubst \
# --branchIds '1,2,3' \
# --eteEvol\
# --outGroup 'Cya_NS01_5_2B_1' \
#Generate Plots
# --plotBiophysicalFeatures \
# --selectedProteins 'Syn_WH5701 ,Syn_RS9917' \
# --buildLogo \
# --plotTree \
# --fetchStructures \