home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

13 rows where transcript_id = 19586900

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
104998763 GT-AG 0 1.000000099473604e-05 8276 rna-XM_022385962.1 19586900 2 989978 998253 Limulus polyphemus 6850 TTG|GTAAGTTTGA...GTTATTTAAGTT/TTTAAAGTTATT...TATAG|GTT 2 1 4.266
104998764 GC-AG 0 1.000000099473604e-05 2947 rna-XM_022385962.1 19586900 3 986829 989775 Limulus polyphemus 6850 AAA|GCAAGTACAT...TGTATTTTGATT/TGTATTTTGATT...TACAG|ATT 0 1 6.884
104998765 GT-AG 0 1.000000099473604e-05 5549 rna-XM_022385962.1 19586900 4 981117 986665 Limulus polyphemus 6850 ATG|GTTAGTATAT...TTTCCCATAACA/ATATTGTTAATG...CTTAG|GTC 1 1 8.998
104998766 GT-AG 0 1.000000099473604e-05 5772 rna-XM_022385962.1 19586900 5 975307 981078 Limulus polyphemus 6850 AAG|GTTAGTTTGT...TAACCTTTATCT/TCCTTACTAATT...GTCAG|ACT 0 1 9.49
104998767 GT-AG 0 1.000000099473604e-05 708 rna-XM_022385962.1 19586900 6 974548 975255 Limulus polyphemus 6850 GAT|GTGAGCAAAT...CATTTCTTGATT/CATTTCTTGATT...TGCAG|GAA 0 1 10.152
104998768 GT-AG 0 4.230143439703369e-05 7915 rna-XM_022385962.1 19586900 7 966518 974432 Limulus polyphemus 6850 CAG|GTAAACACAA...ACATTCTTGATG/ACATTCTTGATG...TTAAG|CTT 1 1 11.643
104998769 GT-AG 0 1.000000099473604e-05 3041 rna-XM_022385962.1 19586900 8 963394 966434 Limulus polyphemus 6850 AAG|GTGAGATTAA...TCTTTCTTGAAG/TTTTTGTTCAAT...CTTAG|GTG 0 1 12.719
104998770 GT-AG 0 1.000000099473604e-05 1058 rna-XM_022385962.1 19586900 9 962141 963198 Limulus polyphemus 6850 GAA|GTAAGGATTT...CTTTTCTTCTCT/TGCTAGTTCATT...TTAAG|TTC 0 1 15.247
104998771 GT-AG 0 0.0002876492707046 2568 rna-XM_022385962.1 19586900 10 959429 961996 Limulus polyphemus 6850 GAG|GTATGTTACT...TTTGTCTAACTT/GTTTGTCTAACT...TCTAG|GGC 0 1 17.114
104998772 GT-AG 0 1.000000099473604e-05 365 rna-XM_022385962.1 19586900 11 958955 959319 Limulus polyphemus 6850 AAG|GTTAGTTGTA...TTTTTTTTTTCT/GAATATTTTATG...TTCAG|CTA 1 1 18.527
104998773 GT-AG 0 1.000000099473604e-05 2406 rna-XM_022385962.1 19586900 12 956459 958864 Limulus polyphemus 6850 ACA|GTTAAGTAGA...TACTTTTTATTT/TTTTTATTTATT...TTCAG|TGG 1 1 19.694
104998909 GT-AG 0 0.0002163018212982 4054 rna-XM_022385962.1 19586900 1 998507 1002560 Limulus polyphemus 6850 CCA|GTAAGATTTT...TTTTTCTAAACT/TTTTTTCTAAAC...AACAG|CCA   0 1.011
104998910 GT-AG 0 1.000000099473604e-05 2187 rna-XM_022385962.1 19586900 13 953167 955353 Limulus polyphemus 6850 AAT|GTGAGTATAT...ATTTTATTAACA/ATTTTATTAACA...TTCAG|GCA   0 34.02

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 30.002ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)