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

✎ 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
77699793 GT-AG 0 1.000000099473604e-05 277 rna-XM_005228647.3 14514661 1 1860023 1860299 Falco peregrinus 8954 TGG|GTAAGTGGCT...TTTTTCTTCCTT/ATATTATTCAAT...TACAG|GAA 0 1 1.824
77699794 GT-AG 0 1.000000099473604e-05 812 rna-XM_005228647.3 14514661 2 1859186 1859997 Falco peregrinus 8954 TGG|GTGAGTTGCA...TCATCATTATAA/AACAATTTCATT...TTCAG|CTT 1 1 3.206
77699795 GT-AG 0 0.0071071782501091 5104 rna-XM_005228647.3 14514661 3 1854019 1859122 Falco peregrinus 8954 ATA|GTAAGCATTT...TATTCCTTACAT/TTATTCCTTACA...ATCAG|ATT 1 1 6.689
77699796 GT-AG 0 1.000000099473604e-05 1562 rna-XM_005228647.3 14514661 4 1852334 1853895 Falco peregrinus 8954 AAG|GTAATTGGCT...CTGACTGTAACA/GAAAAACTGACT...CATAG|ATA 1 1 13.488
77699797 GT-AG 0 0.0003565738442457 2036 rna-XM_005228647.3 14514661 5 1850178 1852213 Falco peregrinus 8954 AAG|GTAAGCTTTG...TGTTGTTTAATT/TGTTGTTTAATT...TACAG|ACA 1 1 20.122
77699798 GT-AG 0 4.296338573341721e-05 1146 rna-XM_005228647.3 14514661 6 1848906 1850051 Falco peregrinus 8954 AGG|GTAAGCTCAT...CATGTTTAAACA/TCATGTTTAAAC...TGTAG|ATA 1 1 27.087
77699799 GT-AG 0 0.0002308120442714 791 rna-XM_005228647.3 14514661 7 1847993 1848783 Falco peregrinus 8954 GAG|GTATGTTAGT...TTCTCTTTCTTC/TAACCACTCAAA...TATAG|GAC 0 1 33.831
77699800 GT-AG 0 1.000000099473604e-05 390 rna-XM_005228647.3 14514661 8 1847484 1847873 Falco peregrinus 8954 AAG|GTGAGGACAA...TGGTTTTTGAAC/AACTAATTTATT...GTCAG|ACT 2 1 40.409
77699801 GT-AG 0 1.000000099473604e-05 5463 rna-XM_005228647.3 14514661 9 1841831 1847293 Falco peregrinus 8954 ACG|GTGAGTCCAG...TTCTTTTTATAC/TTTATACTGAAT...TTCAG|ATC 0 1 50.912
77699802 GT-AG 0 3.683352349805476e-05 1537 rna-XM_005228647.3 14514661 10 1840129 1841665 Falco peregrinus 8954 CCG|GTAAGCACTA...TTATTCTTCACT/TTATTCTTCACT...CCTAG|CTG 0 1 60.033
77699803 GT-AG 0 1.000000099473604e-05 1716 rna-XM_005228647.3 14514661 11 1838244 1839959 Falco peregrinus 8954 ATG|GTAAGTACTT...CATTTCTTTTTT/CCCGATTTGATC...TGCAG|TGC 1 1 69.375
77699804 GT-AG 0 1.000000099473604e-05 534 rna-XM_005228647.3 14514661 12 1837537 1838070 Falco peregrinus 8954 CAG|GTACAGACTT...TTTTTCTTTTCT/TTTCTGCTCACT...TCCAG|TTT 0 1 78.939
77699805 GT-AG 0 1.000000099473604e-05 3392 rna-XM_005228647.3 14514661 13 1833916 1837307 Falco peregrinus 8954 CAG|GTGAGCATCC...AGATGTTTATCT/CAGGTATTTATT...CACAG|ACG 1 1 91.598

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