1
|
1 =============================================================================
|
|
2 We developed an in-silico method "seq2HLA", written in python and R, which
|
|
3 takes standard paired end RNA-Seq sequence reads in fastq format
|
|
4 as input, uses a bowtie index comprising all HLA alleles and outputs the most
|
|
5 likely HLA class I and class II genotypes, a p-value for each call, and the
|
|
6 expression of each class.
|
|
7 =============================================================================
|
|
8 Author:
|
|
9 Sebastian Boegel
|
|
10 =============================================================================
|
|
11
|
|
12 Tool dependencies:
|
|
13
|
|
14 - bowtie
|
|
15 - R
|
|
16
|
|
17 =============================================================================
|
|
18 To implement this script into Galaxy you have to copy the scripts folder in
|
|
19 your "$GALAXYHOME/tools/" folder and add the path of seq2HLA.xml
|
|
20 to your "$GALAXYHOME/tool_conf.xml"
|
|
21
|
|
22 Example:
|
|
23 # <tool file="rna_seq/mapping_counter.xml" />
|
|
24 # <tool file="rna_seq/count_genes_exons_junctions.xml" />
|
|
25 # <tool file="rna_seq_auto/get_RNA-seq_data.xml" />
|
|
26 # </section>
|
|
27 <section name="HLA Typing" id="hla_type">
|
|
28 <tool file="seq2HLA/seq2HLA.xml"/>
|
|
29 </section>
|
|
30 # <section name="RSeQC" id="rseqc">
|
|
31 # <tool file="RSeQC/bam2wig.xml" />
|
|
32 # <tool file="RSeQC/bam_stat.xml" />
|
|
33 # <tool file="RSeQC/clipping_profile.xml" />
|
|
34 # <tool file="RSeQC/geneBody_coverage.xml" />
|
|
35 # <tool file="RSeQC/infer_experiment.xml" />
|
|
36 ...
|
|
37 ==============================================================================
|
|
38 The script uses in its subprocesses 4 cores, so you will also have to add a
|
|
39 setting to your "$GALAXYHOME/universe_wsgi.ini" to configure the queue for that
|
|
40 script
|
|
41
|
|
42 ...
|
|
43 [galaxy:tool_runners]
|
|
44
|
|
45 #biomart = local:///
|
|
46 #encode_db1 = local:///
|
|
47 #hbvar = local:///
|
|
48 #microbial_import1 = local:///
|
|
49 ucsc_table_direct1 = local:///
|
|
50 #ucsc_table_direct_archaea1 = local:///
|
|
51 #ucsc_table_direct_test1 = local:///
|
|
52 upload1 = local:///
|
|
53 bowtie_wrapper = pbs:////-l nodes=1:ppn=4
|
|
54 bowtie2_wrapper = pbs:////-l nodes=1:ppn=4
|
|
55 tophat = pbs:////-l nodes=1:ppn=4
|
|
56 tophat_color = pbs:////-l nodes=1:ppn=4
|
|
57 cuffdiff = pbs:////-l nodes=1:ppn=4
|
|
58 cufflinks = pbs:////-l nodes=1:ppn=4
|
|
59 cuffmerge = pbs:////-l nodes=1:ppn=4
|
|
60 seqhla = pbs:////-l nodes=1:ppn=6 (this line should be added)
|
|
61 ...
|
|
62 =============================================================================
|