comparison testing_cgatools-982e19c29ec0/cgatools/README.txt @ 0:ef23f9cd599b draft default tip

Uploaded
author devteam
date Thu, 27 Sep 2012 13:37:59 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:ef23f9cd599b
1 Provides galaxy tools for Complete Genomics' cgatools package - http://www.completegenomics.com
2
3 This repository provides tools to execute functions of cgatools from Complete Genomics, Inc.
4 and includes the cgatools 1.6 executable.
5
6 Reference genomes files for cgatools can be downloaded from Complete Genomics' ftp site:
7 ftp://ftp.completegenomics.com/ReferenceFiles/build37.crr
8 ftp://ftp.completegenomics.com/ReferenceFiles/build36.crr
9
10 Calibration files for cgatools can be downloaded from Complete Genomics' ftp site:
11 ftp://ftp.completegenomics.com/ScoreCalibrationFiles/var-calibration-v2.tgz
12
13 After copying the files in the desired locations follow the instructions below to register
14 the reference files with galaxy.
15
16
17
18
19 AUTOMATIC INSTALL
20
21 When prompted for a tool panel section to contain the installed tools create a new section
22 called 'Complete Genomics - cgatools 1.6'.
23
24 After install create a cg_ccr_files.loc file in the tool-data directory of your Galaxy
25 instance by copying the cg_ccr_files.loc.sample file. In cg_ccr_files.loc edit the path
26 for the reference genome files (.crr files) downloaded from Complete Genomics' ftp site.
27
28 Restart Galaxy instance after editing cg_crr_files.loc.
29
30
31
32
33 MANUAL INSTALL
34
35 For manual install from compressed files move/copy the following files into your Galaxy instance:
36 directory tools/cgatools_1.6 to tools/
37 file lib/galaxy/datatypes/completegenomics.py to lib/galaxy/datatypes/
38 file tool-data/cg_crr_files.loc.sample to tool-data/cg_crr_files.loc
39
40 In cg_ccr_files.loc edit the path for the reference genome files (.crr files) downloaded
41 from Complete Genomics' ftp site.
42
43 Paste from tool_config.xml.sample into the tool_config.xml of your Galaxy instance:
44 <!--
45 Copy the following section to tool_conf.xml file in your Galaxy distribution if you are
46 adding Complete Genomics tools manually to your Galaxy instance
47 -->
48 <section name="Complete Genomics - cgatools 1.6" id="cg_cgatools1.6">
49 <tool file="cgatools_1.6/listvariants.xml" />
50 <tool file="cgatools_1.6/testvariants.xml" />
51 <tool file="cgatools_1.6/listtestvariants.xml" />
52 <tool file="cgatools_1.6/calldiff.xml" />
53 <tool file="cgatools_1.6/snpdiff.xml" />
54 <tool file="cgatools_1.6/junctiondiff.xml" />
55 <tool file="cgatools_1.6/join.xml" />
56 <tool file="cgatools_1.6/varfilter.xml" />
57 <tool file="cgatools_1.6/mkvcf.xml" />
58 <tool file="cgatools_1.6/evidence2sam.xml" />
59 </section>
60 <!-- End of copied section -->
61
62 Paste from tool_data_table_config.xml.sample into the tool_data_table_config.xml of your Galaxy instance:
63 <!-- Start location of cgatools crr files -->
64 <table name="cg_crr_files" comment_char="#">
65 <columns>value, dbkey, name, path</columns>
66 <file path="tool-data/cg_crr_files.loc" />
67 </table>
68 <!-- End Location of cgatools crr files -->
69
70 Paste from datatypes_conf.xml into the datatypes_conf.xml of your Galaxy instance:
71 <!--
72 Copy the following section to datatypes_conf.xml file in your Galaxy distribution if you are adding Complete Genomics tools manually to your Galaxy instance
73 -->
74 <!-- Start Complete Genomics Datatypes -->
75 <datatype extension="cg_var" type="galaxy.datatypes.completegenomics:CG_Var" display_in_upload="true" />
76 <datatype extension="cg_mastervar" type="galaxy.datatypes.completegenomics:CG_MasterVar" display_in_upload="true" />
77 <datatype extension="cg_gene" type="galaxy.datatypes.completegenomics:CG_Gene" display_in_upload="true" />
78 <!-- End Complete Genomics Datatypes -->
79 <!-- End of copied section -->
80
81 Restart Galaxy instance.