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)

12 rows where transcript_id = 26505155

✎ 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
146835071 GT-AG 0 1.000000099473604e-05 363 Pavag01G045100.1.v3.1 26505155 1 3252981 3253343 Paspalum vaginatum 158149 AAG|GTCAGTACTC...TGGGCATTACTT/CTGATTCTGATA...GTCAG|GTG 0 1 7.215
146835072 GT-AG 0 0.001266979649133 184 Pavag01G045100.1.v3.1 26505155 2 3253679 3253862 Paspalum vaginatum 158149 GGG|GTATGTATTT...TATACTTTCACT/CTTTCACTAATT...TGTAG|GTT 2 1 11.264
146835073 GT-AG 0 1.3466289864730716e-05 209 Pavag01G045100.1.v3.1 26505155 3 3254494 3254702 Paspalum vaginatum 158149 CAG|GTGTGTTTAG...TTTATCCTATTT/CTAGAACTAATT...TGCAG|GTT 0 1 18.891
146835074 GT-AG 0 1.000000099473604e-05 638 Pavag01G045100.1.v3.1 26505155 4 3254808 3255445 Paspalum vaginatum 158149 GCT|GTGAGTTGAT...TCTTTCTTAAAA/ATCTTTCTTAAA...TGCAG|GTT 0 1 20.16
146835075 GT-AG 0 0.091496244604014 199 Pavag01G045100.1.v3.1 26505155 5 3255639 3255837 Paspalum vaginatum 158149 ATG|GTATGCTCTC...TTTTTCATATTT/CTCTTTTTCATA...TGCAG|ATG 1 1 22.492
146835076 GT-AG 0 0.000250417360373 116 Pavag01G045100.1.v3.1 26505155 6 3257580 3257695 Paspalum vaginatum 158149 TTG|GTAAGCTTGA...TTATATTTATTT/GTTATATTTATT...ATCAG|GTA 0 1 43.546
146835077 GT-AG 0 1.000000099473604e-05 176 Pavag01G045100.1.v3.1 26505155 7 3257909 3258084 Paspalum vaginatum 158149 CGG|GTAGGTATTT...ACCATTTTAGCA/GCATTTTTCAAT...TGTAG|GTA 0 1 46.12
146835078 GT-AG 0 1.000000099473604e-05 74 Pavag01G045100.1.v3.1 26505155 8 3260350 3260423 Paspalum vaginatum 158149 CAG|GTTGGTAGTT...ACCTTTTTACTT/CACCTTTTTACT...AGCAG|GTA 0 1 73.495
146835079 GT-AG 0 1.000000099473604e-05 132 Pavag01G045100.1.v3.1 26505155 9 3260537 3260668 Paspalum vaginatum 158149 AAG|GTACTAGCTT...CTCCTTTTGATT/CTCCTTTTGATT...TTCAG|TAT 2 1 74.861
146835080 GT-AG 0 3.0412401731262476e-05 171 Pavag01G045100.1.v3.1 26505155 10 3261057 3261227 Paspalum vaginatum 158149 CAT|GTAAGTTGCT...TATCTCTTGTTT/CTTGTTTTCATG...TGTAG|GCA 0 1 79.55
146835081 GT-AG 0 1.000000099473604e-05 1420 Pavag01G045100.1.v3.1 26505155 11 3261549 3262968 Paspalum vaginatum 158149 AAG|GTAATAGACA...GAATCCATATTT/GCGTTTCTAATC...CATAG|GTT 0 1 83.43
146835082 GT-AG 0 1.000000099473604e-05 285 Pavag01G045100.1.v3.1 26505155 12 3263227 3263511 Paspalum vaginatum 158149 CAG|GTTAGTATCT...TCATTTTTGACA/TCATTTTTGACA...TGCAG|GCA 0 1 86.548

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