fix config copy
[arvados.git] / crunch_scripts / arvados-bcbio-nextgen.py
1 #!/usr/bin/python
2
3 import arvados
4 import subprocess
5 import subst
6 import shutil
7 import os
8
9 if len(arvados.current_task()['parameters']) > 0:
10     p = arvados.current_task()['parameters']
11 else:
12     p = arvados.current_job()['script_parameters']
13
14 t = arvados.current_task().tmpdir
15
16 os.unlink("/usr/local/share/bcbio-nextgen/galaxy")
17 os.mkdir("/usr/local/share/bcbio-nextgen/galaxy")
18 shutil.copy("/usr/local/share/bcbio-nextgen/config/bcbio_system.yaml", "/usr/local/share/bcbio-nextgen/galaxy")
19
20 os.mkdir("/usr/local/share/bcbio-nextgen/galaxy/tool-data")
21
22 with open("/usr/local/share/bcbio-nextgen/galaxy/tool-data/tool_data_table_conf.xml") as f:
23     f.write('''<tables>
24     <!-- Locations of indexes in the BWA mapper format -->
25     <table name="bwa_indexes" comment_char="#">
26         <columns>value, dbkey, name, path</columns>
27         <file path="tool-data/bwa_index.loc" />
28     </table>
29     <!-- Locations of indexes in the Bowtie2 mapper format -->
30     <table name="bowtie2_indexes" comment_char="#">
31         <columns>value, dbkey, name, path</columns>
32         <file path="tool-data/bowtie2_indices.loc" />
33     </table>
34     <!-- Locations of indexes in the Bowtie2 mapper format for TopHat2 to use -->
35     <table name="tophat2_indexes" comment_char="#">
36         <columns>value, dbkey, name, path</columns>
37         <file path="tool-data/bowtie2_indices.loc" />
38     </table>
39     <!-- Location of SAMTools indexes and other files -->
40     <table name="sam_fa_indexes" comment_char="#">
41         <columns>index, value, path</columns>
42         <file path="tool-data/sam_fa_indices.loc" />
43     </table>
44     <!-- Location of Picard dict file and other files -->
45     <table name="picard_indexes" comment_char="#">
46         <columns>value, dbkey, name, path</columns>
47         <file path="tool-data/picard_index.loc" />
48     </table>
49     <!-- Location of Picard dict files valid for GATK -->
50     <table name="gatk_picard_indexes" comment_char="#">
51         <columns>value, dbkey, name, path</columns>
52         <file path="tool-data/gatk_sorted_picard_index.loc" />
53     </table>
54 </tables>
55 ''')
56
57 with open("/usr/local/share/bcbio-nextgen/galaxy/tool-data/bowtie2_indices.loc", "w") as f:
58     f.write(subst.do_substitution(p, "GRCh37\tGRCh37\tHuman (GRCh37)\t$(dir $(bowtie2_indices))"))
59
60 with open("/usr/local/share/bcbio-nextgen/galaxy/tool-data/bwa_indices.loc", "w") as f:
61     f.write(subst.do_substitution(p, "GRCh37\tGRCh37\tHuman (GRCh37)\t$(file $(bwa_indices))"))
62
63 with open("/usr/local/share/bcbio-nextgen/galaxy/tool-data/gatk_sorted_picard_index.loc", "w") as f:
64     f.write(subst.do_substitution(p, "GRCh37\tGRCh37\tHuman (GRCh37)\t$(file $(gatk_sorted_picard_index))"))
65
66 with open("/usr/local/share/bcbio-nextgen/galaxy/tool-data/picard_index.loc", "w") as f:
67     f.write(subst.do_substitution(p, "GRCh37\tGRCh37\tHuman (GRCh37)\t$(file $(picard_index))"))
68
69 with open("/usr/local/share/bcbio-nextgen/galaxy/tool-data/sam_fa_indices.loc", "w") as f:
70     f.write(subst.do_substitution(p, "index\tGRCh37\t$(file $(sam_fa_indices))"))
71
72 os.chdir(arvados.current_task().tmpdir)
73
74 rcode = subprocess.call(["bcbio_nextgen.py", "--workflow", "template", "gatk-variant", "project1",
75                          subst.do_substitution(p, "$(R1)"),
76                          subst.do_substitution(p, "$(R2)")])
77
78 os.chdir("project1/work")
79
80 rcode = subprocess.call(["bcbio_nextgen.py", "../config/project1.yaml"])