File: gff3.lua

package info (click to toggle)
genometools 1.6.1%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 50,412 kB
  • sloc: ansic: 271,241; ruby: 30,339; python: 4,880; sh: 3,193; makefile: 1,194; 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.]])