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

✎ 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
47813722 GT-AG 0 1.000000099473604e-05 112 rna-XM_027249634.1 8855953 1 40530602 40530713 Coffea arabica 13443 GAG|GTAGGTGCAA...GAATCTTTTGTT/TATCTGTTCAGA...TTTAG|GTA 2 1 3.34
47813723 GT-AG 0 0.0046165521862838 248 rna-XM_027249634.1 8855953 2 40530781 40531028 Coffea arabica 13443 GAG|GTACACTTCC...GACATTTTGCCA/GTGAAATTGATA...TGCAG|ATG 0 1 5.624
47813724 GT-AG 0 1.000000099473604e-05 93 rna-XM_027249634.1 8855953 3 40531095 40531187 Coffea arabica 13443 AAG|GTGAGATGAA...CTGTTTTTGATG/TGTTTGTTCATA...TGTAG|GGT 0 1 7.873
47813725 GT-AG 0 0.0002117010749298 99 rna-XM_027249634.1 8855953 4 40531235 40531333 Coffea arabica 13443 CAT|GTAAGTTTTA...ATTCTCTTTATG/TCATTTCTGATA...ATCAG|GGC 2 1 9.475
47813726 GT-AG 0 0.0268260175944559 205 rna-XM_027249634.1 8855953 5 40531380 40531584 Coffea arabica 13443 GAG|GTATTCCTTT...CTATTTCTGACA/CTATTTCTGACA...TGCAG|AAA 0 1 11.043
47813727 GT-AG 0 0.0034233170424352 86 rna-XM_027249634.1 8855953 6 40531666 40531751 Coffea arabica 13443 AAA|GTATATACCC...TATGACTTATTT/TTATGACTTATT...TGCAG|TGC 0 1 13.804
47813728 GT-AG 0 1.000000099473604e-05 97 rna-XM_027249634.1 8855953 7 40531795 40531891 Coffea arabica 13443 TTG|GTGAGTTCAG...TGATTTTTATAT/TTTATACTGATT...TCCAG|GGG 1 1 15.269
47813729 GT-AG 0 0.0720540048372883 392 rna-XM_027249634.1 8855953 8 40531942 40532333 Coffea arabica 13443 TCA|GTATGTATCT...GATGTTTTACCA/AGATGTTTTACC...CCCAG|GTA 0 1 16.973
47813730 GT-AG 0 1.000000099473604e-05 743 rna-XM_027249634.1 8855953 9 40532416 40533158 Coffea arabica 13443 TAG|GTTGGTACAT...TTAGTCTTGAAA/TCTCTTTTTAGT...AACAG|GTT 1 1 19.768
47813731 GT-AG 0 1.000000099473604e-05 2464 rna-XM_027249634.1 8855953 10 40533209 40535672 Coffea arabica 13443 TTT|GTAAGACATC...GATTCCTTGTTG/TCCTTGTTGATC...TTCAG|GAC 0 1 21.472
47813732 GT-AG 0 5.016567874150645e-05 582 rna-XM_027249634.1 8855953 11 40535747 40536328 Coffea arabica 13443 CTT|GTAAGTTGGC...CATGCCTTGTTT/CCTTGTTTCACA...CTCAG|GAA 2 1 23.995
47813733 GT-AG 0 0.0033862834864322 81 rna-XM_027249634.1 8855953 12 40536381 40536461 Coffea arabica 13443 AGT|GTAATCTTCT...GCAGTTTTCATC/GCAGTTTTCATC...TGCAG|GCA 0 1 25.767
47813734 GT-AG 0 1.000000099473604e-05 73 rna-XM_027249634.1 8855953 13 40537107 40537179 Coffea arabica 13443 CAG|GTACTAGCTG...TTATTCGTATTA/TTCGTATTAATG...TGCAG|TTA 0 1 47.751

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