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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
204419312 GT-AG 0 1.000000099473604e-05 774 rna-XM_038850782.1 36995221 1 4013861 4014634 Tripterygium wilfordii 458696 CAG|GTGTGTATAT...TACTCTTTTGTG/GTAATATTGATG...AATAG|TTG 0 1 8.708
204419313 GT-AG 0 0.0334589816132872 567 rna-XM_038850782.1 36995221 2 4013061 4013627 Tripterygium wilfordii 458696 CAG|GTATACTTAT...CAATTCTTCCTC/AATATAATTATG...CTTAG|TTT 2 1 15.98
204419314 GT-AG 0 1.000000099473604e-05 83 rna-XM_038850782.1 36995221 3 4012914 4012996 Tripterygium wilfordii 458696 CAG|GTAAATAATC...ATGTTCTTGGTT/ACGTCATTTATG...TTTAG|GTC 0 1 17.978
204419315 GT-AG 0 1.000000099473604e-05 339 rna-XM_038850782.1 36995221 4 4011879 4012217 Tripterygium wilfordii 458696 GTG|GTAAGAATCA...ATGAGCTTAGTT/ACAATTCTCAAG...CCCAG|GTC 0 1 39.7
204419316 GT-AG 0 1.000000099473604e-05 87 rna-XM_038850782.1 36995221 5 4011657 4011743 Tripterygium wilfordii 458696 GAA|GTGAGTATCC...GTATCCTCAACT/AGTATCCTCAAC...TACAG|GTG 0 1 43.914
204419317 GT-AG 0 3.712445005179273e-05 84 rna-XM_038850782.1 36995221 6 4011441 4011524 Tripterygium wilfordii 458696 CTT|GTAAGTAGTT...ATTCTCTTGAGA/ATGGTATTAATT...CACAG|ACA 0 1 48.034
204419318 GT-AG 0 1.000000099473604e-05 80 rna-XM_038850782.1 36995221 7 4011184 4011263 Tripterygium wilfordii 458696 AAG|GTCTGATAAA...CTATATTTACAT/ACTATATTTACA...GGTAG|GGA 0 1 53.558
204419319 GT-AG 0 1.000000099473604e-05 95 rna-XM_038850782.1 36995221 8 4011035 4011129 Tripterygium wilfordii 458696 GAG|GTTGGTTTCA...TAAATTTTGATT/TAAATTTTGATT...CACAG|GCT 0 1 55.243
204419320 GT-AG 0 3.90221882090713e-05 284 rna-XM_038850782.1 36995221 9 4010688 4010971 Tripterygium wilfordii 458696 CGG|GTAAATCTCA...CTTGTTTTGACT/CTTGTTTTGACT...TTTAG|GCA 0 1 57.21
204419321 GT-AG 0 7.759904047954605e-05 85 rna-XM_038850782.1 36995221 10 4009643 4009727 Tripterygium wilfordii 458696 AAG|GTATATGAAA...GGTATTTTACTT/TGGTATTTTACT...TGCAG|ATA 0 1 87.172
204419322 GT-AG 0 0.0006258903291934 317 rna-XM_038850782.1 36995221 11 4009198 4009514 Tripterygium wilfordii 458696 AAG|GTATAAATAT...CACTCCTTGATA/TTGATATTGATC...ATTAG|GTA 2 1 91.167
204419323 CG-CA 0 0.0092309692781959 13477 rna-XM_038850782.1 36995221 12 3995652 4009128 Tripterygium wilfordii 458696 CAC|CGATTTATAG...CCATTTTTGGCA/AGTTTTGTCATT...CTACA|CGA 2 1 93.321

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