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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
77700066 GT-AG 0 1.5144386806632942e-05 1520 rna-XM_005228642.3 14514690 1 1407757 1409276 Falco peregrinus 8954 CAA|GTAAGCAAGT...GATTCTGTAATA/GATTCTGTAATA...GGTAG|GTA 0 1 3.483
77700067 GT-AG 0 1.000000099473604e-05 433 rna-XM_005228642.3 14514690 2 1407234 1407666 Falco peregrinus 8954 CAG|GTGTGAATCT...GTTCCTTTAATG/TAATGTTTCATT...TTTAG|CTT 0 1 10.945
77700068 GT-AG 0 1.000000099473604e-05 743 rna-XM_005228642.3 14514690 3 1406417 1407159 Falco peregrinus 8954 AAG|GTAAAGATGG...TATTTCCTGATG/TATTTCCTGATG...GGCAG|GTG 2 1 17.081
77700069 AT-AC 1 99.9999999907856 523 rna-XM_005228642.3 14514690 4 1405828 1406350 Falco peregrinus 8954 CCA|ATATCCTTTT...ATGTGCTTAACT/CTTAACTTCATA...AATAC|ATC 2 1 22.554
77700070 GT-AG 0 1.000000099473604e-05 479 rna-XM_005228642.3 14514690 5 1405307 1405785 Falco peregrinus 8954 CTG|GTGAGTGCAT...AGTGTTTTACTT/CAGTGTTTTACT...TCTAG|GGC 2 1 26.036
77700071 GT-AG 0 1.040245050618307e-05 1643 rna-XM_005228642.3 14514690 6 1403609 1405251 Falco peregrinus 8954 AAT|GTAAGTATAT...TGTTTCTTGCTG/GAATTACACATT...GATAG|GCA 0 1 30.597
77700072 GT-AG 0 1.000000099473604e-05 758 rna-XM_005228642.3 14514690 7 1402747 1403504 Falco peregrinus 8954 CAC|GTAAGTGAAA...TTTTTCTTTTTT/ACAATGTTCAAT...GACAG|TCG 2 1 39.221
77700073 GT-AG 0 1.000000099473604e-05 122 rna-XM_005228642.3 14514690 8 1402549 1402670 Falco peregrinus 8954 AAG|GTAGGGTTCA...TCTATCTAAACT/AACTCTCTGATT...AACAG|ATC 0 1 45.522
77700074 GT-AG 0 4.78586983382605e-05 1070 rna-XM_005228642.3 14514690 9 1401337 1402406 Falco peregrinus 8954 AAG|GTACTGTGTG...GCACTCTTATTT/TTGTTGTTGACT...TGCAG|CTG 1 1 57.297
77700075 GT-AG 0 1.000000099473604e-05 2063 rna-XM_005228642.3 14514690 10 1399173 1401235 Falco peregrinus 8954 TTG|GTGAGTAGAT...TTGACTTTACCC/TTTGACTTTACC...TTCAG|GGC 0 1 65.672
77700076 GT-AG 0 2.993348540209837e-05 169 rna-XM_005228642.3 14514690 11 1398930 1399098 Falco peregrinus 8954 GAG|GTATGATGAT...CATTTCTTCATC/CATGTTTTCATT...TGTAG|CGA 2 1 71.808
77700077 GT-AG 0 1.2622190620507243e-05 199 rna-XM_005228642.3 14514690 12 1398605 1398803 Falco peregrinus 8954 AGT|GTAAGTGTAA...CGTTTCTCAATA/TCGTTTCTCAAT...TTCAG|ATA 2 1 82.255
77700078 GT-AG 0 0.0001295308068179 976 rna-XM_005228642.3 14514690 13 1397505 1398480 Falco peregrinus 8954 ATG|GTATGTGATG...CTGTCCTTTTCT/CTAGTACTAACG...GCCAG|GGT 0 1 92.537

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