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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
8696169 GT-AG 0 1.000000099473604e-05 2284 rna-XM_020240690.1 1565103 1 3603467 3605750 Ananas comosus 4615 GAG|GTTCGTGCCC...TTTTCGTTAATG/TGACAATTCATT...TTCAG|ATA 1 1 3.402
8696170 GT-AG 0 0.000235002982716 358 rna-XM_020240690.1 1565103 2 3603009 3603366 Ananas comosus 4615 GAT|GTAACAAATC...AGTTTTGTAGCT/GAAATTGTTACT...TGTAG|GCA 2 1 5.849
8696171 GT-AG 0 0.0038922209832592 964 rna-XM_020240690.1 1565103 3 3601936 3602899 Ananas comosus 4615 CAG|GTATTGTTCT...TTTCTTTTGATA/TTTCTTTTGATA...TGCAG|GAA 0 1 8.517
8696172 GT-AG 0 0.0001854653418406 2025 rna-XM_020240690.1 1565103 4 3598429 3600453 Ananas comosus 4615 CAG|GTATATCACA...ATTCATTTGATT/ATTCATTTGATT...ATCAG|GTG 0 1 44.787
8696173 GT-AG 0 7.956584338255097e-05 183 rna-XM_020240690.1 1565103 5 3598003 3598185 Ananas comosus 4615 CAG|GTATTGAACC...TTTTCCTTACTA/ATTTTCCTTACT...TATAG|GTT 0 1 50.734
8696174 GT-AG 0 0.016630122214804 917 rna-XM_020240690.1 1565103 6 3596771 3597687 Ananas comosus 4615 CAA|GTATGTTCCA...CATCCCTTTGCT/ATTGGTCTAATG...CTCAG|GCA 0 1 58.443
8696175 GT-AG 0 1.5368560043951474e-05 572 rna-XM_020240690.1 1565103 7 3595959 3596530 Ananas comosus 4615 AAG|GTACTGATTT...TTTTTCTCGATA/CTCGATATAATT...TTCAG|GTT 0 1 64.317
8696176 GT-AG 0 1.000000099473604e-05 91 rna-XM_020240690.1 1565103 8 3595583 3595673 Ananas comosus 4615 CGG|GTAAGTAGTA...ATTGTCTAAATT/TTGTTTTTCACC...TTCAG|GAG 0 1 71.292
8696177 GT-AG 0 0.0034613662928172 431 rna-XM_020240690.1 1565103 9 3594930 3595360 Ananas comosus 4615 CAG|GTATTCAAGG...TTTTCCTTGTTA/ATTTGGTTTACA...TGCAG|GCT 0 1 76.725
8696178 GT-AG 0 1.000000099473604e-05 84 rna-XM_020240690.1 1565103 10 3594684 3594767 Ananas comosus 4615 AAG|GTCAGTATTA...CATTTTATAATA/CATTTTATAATA...TATAG|GTT 0 1 80.69
8696179 GT-AG 0 6.867952261976827e-05 228 rna-XM_020240690.1 1565103 11 3594321 3594548 Ananas comosus 4615 GAG|GTATTGCCTT...CGTCTCTGAATC/TTGTATTTCACG...GCCAG|TTA 0 1 83.994
8696180 GT-AG 0 0.0009407855199633 163 rna-XM_020240690.1 1565103 12 3593921 3594083 Ananas comosus 4615 CAG|GTGCCTTAGA...TTTTTTTTAAAC/TTCATTTTTACC...TGTAG|ATT 0 1 89.794
8696181 GT-AG 0 1.000000099473604e-05 522 rna-XM_020240690.1 1565103 13 3593225 3593746 Ananas comosus 4615 AAG|GTAGTGGTTT...GAATCTTTTACT/CTTTTACTGATA...TGCAG|GGT 0 1 94.053

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