root/galaxy-central/static/help.html @ 2

リビジョン 2, 3.1 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1<?xml version="1.0" encoding="utf-8" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6<meta name="generator" content="Docutils 0.3.9: http://docutils.sourceforge.net/" />
7<title>HELP</title>
8<link rel="stylesheet" href="/static/help.css" type="text/css" />
9</head>
10<body>
11<div class="document" id="help">
12<h1 class="title">HELP</h1>
13<p><strong>What to do if I have a problem?</strong></p>
14<p>E-mail us at <a class="reference" href="mailto:galaxy&#64;bx.psu.edu">galaxy&#64;bx.psu.edu</a></p>
15<hr class="docutils" />
16<p><strong>What do I do first?</strong></p>
17<p>To start your Galaxy session you first need to initialize history by adding some data. You can do this by using <em>Data</em> tool on the laft pane of the Galaxy window.</p>
18<p>Once you have at least one item in the history, you will be able to run appropriate tools.</p>
19<hr class="docutils" />
20<p><strong>Datatypes</strong></p>
21<p>Galaxy supports the following datatypes:</p>
22<blockquote>
23<ul class="simple">
24<li>text - any text file</li>
25<li>tabular - tab delimited text</li>
26<li>interval - tab delimited file containing information about genome features</li>
27<li>BED - a special case of the interval type</li>
28<li>FASTA - nucleotide or protein sequences</li>
29<li>AXT - blastZ-style pairwise alignments</li>
30<li>MAF - TBA and multiZ multiple alignments</li>
31</ul>
32</blockquote>
33<hr class="docutils" />
34<p><strong>What is the difference between Interval and BED?</strong></p>
35<p><a class="reference" target="_blank" href="http://genome.ucsc.edu/goldenPath/help/customTrack.html#BED">BED format</a> always contains <em>chromosome</em>, <em>start</em>, and <em>end</em> as the first three fields. Interval is more generic and does not require these fields to be in any strict order.  Here is the formal description of interval format used in Galaxy:</p>
36<ul>
37<li><p class="first">Tab delimited format</p>
38</li>
39<li><p class="first">File must start with definition line in the following format (columns may be in any order).:</p>
40<pre class="literal-block">
41#CHROM START END STRAND
42</pre>
43</li>
44<li><p class="first">CHROM - The name of the chromosome (e.g. chr3, chrY, chr2_random) or contig (e.g. ctgY1).</p>
45</li>
46<li><p class="first">START - The starting position of the feature in the chromosome or contig. The first base in a chromosome is numbered 0.</p>
47</li>
48<li><p class="first">END - The ending position of the feature in the chromosome or contig. The chromEnd base is not included in the display of the feature. For example, the first 100 bases of a chromosome are defined as chromStart=0, chromEnd=100, and span the bases numbered 0-99.</p>
49</li>
50<li><p class="first">STRAND - Defines the strand - either '+' or '-'.</p>
51</li>
52<li><p class="first">Example.:</p>
53<pre class="literal-block">
54#CHROM START END   STRAND NAME COMMENT
55chr1   10    100   +      exon myExon
56chrX   1000  10050 -      gene myGene     
57</pre>
58</li>
59</ul>
60</div>
61</body>
62</html>
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。