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

✎ 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
77102041 GT-AG 0 1.000000099473604e-05 382 rna-XM_006412112.2 14424065 1 2193548 2193929 Eutrema salsugineum 72664 GAG|GTGCGTGACT...TTGTTCTAAATT/AATTTTCTAACT...TATAG|ATT 1 1 2.894
77102042 GT-AG 0 0.0001056058602156 114 rna-XM_006412112.2 14424065 2 2194030 2194143 Eutrema salsugineum 72664 TGT|GTGCGTATCT...TTTTTTTTGATT/TTTTTTTTGATT...TGCAG|GCA 2 1 5.347
77102043 GT-AG 0 1.000000099473604e-05 79 rna-XM_006412112.2 14424065 3 2194253 2194331 Eutrema salsugineum 72664 CAG|GTAAGTTTTA...TGATCCTAATTC/GTGATCCTAATT...TTCAG|GAG 0 1 8.021
77102044 GT-AG 0 0.0011941181554108 686 rna-XM_006412112.2 14424065 4 2195826 2196511 Eutrema salsugineum 72664 CAG|GTATGTTGCC...ACATTCTTATAT/AACATTCTTATA...TGTAG|GTC 0 1 44.665
77102045 GT-AG 0 1.000000099473604e-05 302 rna-XM_006412112.2 14424065 5 2196755 2197056 Eutrema salsugineum 72664 CAA|GTAAGAAAAT...TTTATTTTATTC/ATTTATTTTATT...TTCAG|GTT 0 1 50.625
77102046 GT-AG 0 0.0001212587642053 191 rna-XM_006412112.2 14424065 6 2197372 2197562 Eutrema salsugineum 72664 CAA|GTAAGCTTAT...GTGGTTGTGATT/TTGTGATTTATA...TGCAG|GCT 0 1 58.352
77102047 GT-AG 0 6.041822798776267 156 rna-XM_006412112.2 14424065 7 2197803 2197958 Eutrema salsugineum 72664 AAG|GTATCTTTCT...TATCTTTTAAAT/TATCTTTTAAAT...TACAG|GTT 0 1 64.238
77102048 GT-AG 0 1.000000099473604e-05 112 rna-XM_006412112.2 14424065 8 2198244 2198355 Eutrema salsugineum 72664 AAA|GTGAGTTGAA...CCTATTTTAAAT/GGTGTATTTACT...TTTAG|GAG 0 1 71.229
77102049 GT-AG 0 0.3778683579794885 115 rna-XM_006412112.2 14424065 9 2198578 2198692 Eutrema salsugineum 72664 CAG|GTAACCTTTT...CATTTTTTAATT/CATTTTTTAATT...TACAG|GCT 0 1 76.674
77102050 GT-AG 0 0.0004084467641141 103 rna-XM_006412112.2 14424065 10 2198855 2198957 Eutrema salsugineum 72664 AAG|GTACATTTAT...CTGTTCTTGGTC/AAAGACGTAATC...AATAG|GTT 0 1 80.648
77102051 GT-AG 0 0.0029263999030895 91 rna-XM_006412112.2 14424065 11 2199093 2199183 Eutrema salsugineum 72664 GAG|GTATTATTCT...CTTACTTTGAAA/TTGATGCTTACT...TGTAG|CTG 0 1 83.959
77102052 GT-AG 0 0.3957820154322119 89 rna-XM_006412112.2 14424065 12 2199421 2199509 Eutrema salsugineum 72664 CAA|GTACGCTTTC...CAATCTTTAATC/CAATCTTTAATC...TGCAG|ATA 0 1 89.772
77102053 GT-AG 0 0.0194241818010101 80 rna-XM_006412112.2 14424065 13 2199684 2199763 Eutrema salsugineum 72664 AAG|GTATGCTACT...TATACTTTATTA/TTATACTTTATT...ATTAG|GGG 0 1 94.04

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