File: gff3.lua

package info (click to toggle)
genometools 1.6.6%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 50,576 kB
  • sloc: ansic: 271,876; ruby: 29,930; python: 5,106; sh: 3,083; makefile: 1,213; perl: 219; pascal: 159; haskell: 37; sed: 5
file content (19 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
print ([[

File format for option '-offsetfile':

The file supplied to option '-offsetfile' defines a mapping table named
``offsets''. It maps the `sequence-region` entries given in the GFF3_file to
offsets.
It can be defined as follows:

    offsets = {
      chr1  = 1000,
      chr2  = 500
    }

When this example is used, all features with seqid ``chr1'' will be offset by
1000 and all features with seqid ``chr2'' by 500.

If '-offsetfile' is used, offsets for all `sequence-regions` contained in the
given GFF3 files must be defined.]])