/static/help.rst

https://bitbucket.org/cistrome/cistrome-harvard/ · ReStructuredText · 56 lines · 34 code · 22 blank · 0 comment · 0 complexity · 5671fc647106c3c3f0e22f930eccae81 MD5 · raw file

  1. HELP
  2. ====
  3. **What to do if I have a problem?**
  4. E-mail us at `galaxy@bx.psu.edu`__
  5. .. __: mailto:galaxy@bx.psu.edu
  6. -----
  7. **What do I do first?**
  8. To start your Galaxy session you first need to initialize history by adding some data. You can do this by using *Data* tool on the laft pane of the Galaxy window.
  9. Once you have at least one item in the history, you will be able to run appropriate tools.
  10. -----
  11. **Datatypes**
  12. Galaxy supports the following datatypes:
  13. * text - any text file
  14. * tabular - tab delimited text
  15. * interval - tab delimited file containing information about genome features
  16. * BED - a special case of the interval type
  17. * FASTA - nucleotide or protein sequences
  18. * AXT - blastZ-style pairwise alignments
  19. * MAF - TBA and multiZ multiple alignments
  20. -----
  21. **What is the difference between Interval and BED?**
  22. `BED format`__ always contains *chromosome*, *start*, and *end* 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:
  23. .. __: http://genome.ucsc.edu/goldenPath/help/customTrack.html#BED
  24. - Tab delimited format
  25. - File must start with definition line in the following format (columns may be in any order).::
  26. #CHROM START END STRAND
  27. - CHROM - The name of the chromosome (e.g. chr3, chrY, chr2_random) or contig (e.g. ctgY1).
  28. - START - The starting position of the feature in the chromosome or contig. The first base in a chromosome is numbered 0.
  29. - 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.
  30. - STRAND - Defines the strand - either '+' or '-'.
  31. - Example.::
  32. #CHROM START END STRAND NAME COMMENT
  33. chr1 10 100 + exon myExon
  34. chrX 1000 10050 - gene myGene