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 = 5460296

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
28028698 GT-AG 0 3.216368864351112e-05 2315 rna-XM_010135032.1 5460296 1 1062 3376 Buceros rhinoceros 175835 AAT|GTTCTCTGAG...AGTTTCCTGTCT/AGAGAATTAACT...TGTAG|GAA 0 1 7.057
28028699 GT-AG 0 1.000000099473604e-05 897 rna-XM_010135032.1 5460296 2 3504 4400 Buceros rhinoceros 175835 TTG|GTGAGTACAC...ATTTTTTCAATT/CATTTTTTCAAT...TCCAG|ATT 1 1 16.02
28028700 GT-AG 0 1.000000099473604e-05 332 rna-XM_010135032.1 5460296 3 4480 4811 Buceros rhinoceros 175835 CAG|GTAATTATAT...GGATCTTTAGTC/AGTCTCTTCATT...TCCAG|GGG 2 1 21.595
28028701 GT-AG 0 1.000000099473604e-05 632 rna-XM_010135032.1 5460296 4 4909 5540 Buceros rhinoceros 175835 CAG|GTAAGTTTAA...GAAATTTTGATT/GAAATTTTGATT...TTCAG|GAG 0 1 28.44
28028702 GT-AG 0 1.000000099473604e-05 5622 rna-XM_010135032.1 5460296 5 5682 11303 Buceros rhinoceros 175835 GTA|GTGAGTATAC...TTTGCTGTAATG/AATAGCCTCATA...TACAG|GTG 0 1 38.391
28028703 GT-AG 0 0.000112681605685 2493 rna-XM_010135032.1 5460296 6 11415 13907 Buceros rhinoceros 175835 GCG|GTAGGTTGTC...CCCCTCTTAAAA/TTTTTTTCTACC...CACAG|GGT 0 1 46.224
28028704 GT-AG 0 1.000000099473604e-05 2190 rna-XM_010135032.1 5460296 7 14004 16193 Buceros rhinoceros 175835 CAG|GTACGGGGTT...GTTGCATTAATG/GTTGCATTAATG...TCTAG|ACT 0 1 52.999
28028705 GT-AG 0 0.0008776226869832 101 rna-XM_010135032.1 5460296 8 16317 16417 Buceros rhinoceros 175835 ATG|GTACCAATAA...GGTGCCTTGGTT/CTTGGTTTGAGT...TTTAG|GTT 0 1 61.68
28028706 GT-AG 0 1.000000099473604e-05 6988 rna-XM_010135032.1 5460296 9 16560 23547 Buceros rhinoceros 175835 CTG|GTAAGAAATT...ATTGGTTTAACT/ATTGGTTTAACT...CGCAG|TGA 1 1 71.701
28028707 GT-AG 0 1.000000099473604e-05 111766 rna-XM_010135032.1 5460296 10 23669 135434 Buceros rhinoceros 175835 ACA|GTAAGTCAAG...TGCTCTTTCACC/ACCTTCCTCATT...CGCAG|GCT 2 1 80.24
28028708 GT-AG 0 1.000000099473604e-05 5495 rna-XM_010135032.1 5460296 11 135511 141005 Buceros rhinoceros 175835 CAG|GTGAGTTGGG...TGGTTTTTGATT/TTGATTTTTATT...TACAG|CAA 0 1 85.603
28028709 GT-AG 0 1.000000099473604e-05 648 rna-XM_010135032.1 5460296 12 141101 141748 Buceros rhinoceros 175835 GAG|GTACGTCAAA...TGATTCTTTCTG/CTAAAAATGATT...CGCAG|GTT 2 1 92.308
28028710 GC-AG 0 1.000000099473604e-05 742 rna-XM_010135032.1 5460296 13 141796 142537 Buceros rhinoceros 175835 CAG|GCAAGTTAAT...CGTATATTAATT/CGTATATTAATT...CACAG|AGA 1 1 95.625

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 25.956ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)