annotate check.xml @ 4:c30f1e611791 draft

Uploaded
author mkhan1980
date Mon, 04 Mar 2013 07:01:24 -0500
parents e3c4e5ff7f74
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
1 <tool id="fa_gc_content_1" name="Discover CTCF Sites for Forward Strand">
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
2 <description></description>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
3 <command interpreter="perl">check.pl $input $input2 $output</command>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
4 <inputs>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
5 <param format="fasta" name="input" type="data" label="Forward Strand Sequence File"/>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
6 <param format="fasta" name="input2" type="data" label="Forward Strand Coordinate file"/>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
7 </inputs>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
8
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
9
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
10 <outputs>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
11 <data format="tabular" name="output" />
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
12 </outputs>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
13
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
14 <tests>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
15 <test>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
16 <param name="input" value="fa_gc_content_input.fa"/>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
17 <param name="input2" value="fa_gc_content_input2.fa"/>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
18 <output name="out_file1" file="concatenated.txt"/>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
19 </test>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
20 </tests>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
21
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
22 <help>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
23 Background:
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
24 This tool computationally predicts CTCF sites for a nucleotide sequence located on the forward strand. The user is required to provide two files as inputs. The first is the nucleotide sequence of interest on the + strand in FASTA format (this can be obtained from UCSC genome browser or Ensembl). The second file must be a FASTA formatted file containing the chromosome number and the genomic position of the first nucleotide sequence (separated by a tab). For example, if the sequence of interest is located on chromosome 3 with a starting genomic position of 1850000, the first line of the second input file must start with a fasta tag, and the second line will be chr3 1850000
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
25
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
26 Details of Algorithm:
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
27 CTCF sites are predicted by applying the following equation
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
28 w(σ,j) = log2 (((f(σ,j) + sqrt(N) x b(σ)) / (N + sqrt(N))) / b(σ))
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
29
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
30 Where w(σ,j) is the weight of nucleotide σ at position j, N is the total number of binding sites or the sum of all nucleotide occurrences in the column, and b is the prior background frequency of the nucleotide σ.
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
31
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
32 The sum of weights for corresponding nucleotides at each column of the matrix then estimates the likelihood of any sequence of length m to be an instance of a CTCF binding site and takes into account the GC content of the genomic region being scanned.
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
33
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
34
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
35 Citation and further help: For further details of the algorithm, please refer to
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
36
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
37 Khan MA, Soto-Jimenez LM, Howe T, Streit A, Sosinsky A, Stern CD (2013). Computational tools and resources for prediction and analysis of gene regulatory regions in the chick genome.. Genesis, , - . doi:10.1002/dvg.22375
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
38
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
39 For queries/questions, email ucbtmaf@ucl.ac.uk
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
40 </help>
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
41
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
42
e3c4e5ff7f74 Uploaded
mkhan1980
parents:
diff changeset
43 </tool>