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)

11 rows where transcript_id = 33843751

✎ 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
189510770 GT-AG 0 1.000000099473604e-05 14615 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 1 3978375 3992989 Spizaetus tyrannus 252798 CAG|GTGAGAGGCC...GTGTGTTTAGCA/TGTGTGTTTAGC...GCCAG|CTC 0 1 5.188
189510771 GT-AG 0 1.000000099473604e-05 3108 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 2 3993203 3996310 Spizaetus tyrannus 252798 GAG|GTAAGTCTGA...TTAGCCTTTTCT/TTCTGGTTAATT...TCCAG|TGG 0 1 17.889
189510772 GT-AG 0 0.0157282732400921 1935 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 3 3996444 3998378 Spizaetus tyrannus 252798 CAG|GTAACCACTG...TCTGTTTTAACT/TCTGTTTTAACT...TCCAG|GTT 1 1 25.82
189510773 GT-AG 0 1.2186850170950006e-05 1011 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 4 3998544 3999554 Spizaetus tyrannus 252798 CAG|GTAAAGTTTG...TTGTTTTTAATT/TTGTTTTTAATT...GTTAG|GAT 1 1 35.659
189510774 GT-AG 0 0.0002906079003565 2366 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 5 3999685 4002050 Spizaetus tyrannus 252798 TCT|GTAAGTTATT...AAGCCCTAAAAC/AAAGCCCTAAAA...TTCAG|ATT 2 1 43.411
189510775 GT-AG 0 0.001702703080058 1293 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 6 4002306 4003598 Spizaetus tyrannus 252798 ACT|GTTGCATCTT...CTGACTTTATTC/TCTGACTTTATT...TGCAG|GTT 2 1 58.617
189510776 GT-AG 0 1.000000099473604e-05 772 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 7 4003740 4004511 Spizaetus tyrannus 252798 ATG|GTAAGTATGA...TTATCCTTGCAC/ACAGATCTAATG...ATCAG|GTT 2 1 67.024
189510777 GT-AG 0 1.3994170204800314e-05 2089 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 8 4004598 4006686 Spizaetus tyrannus 252798 AAG|GTAAATATTT...AAAGTCTTACAA/ATGTATTTGAGT...ATCAG|ATA 1 1 72.153
189510778 GT-AG 0 1.000000099473604e-05 968 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 9 4006808 4007775 Spizaetus tyrannus 252798 CAG|GTAACACAAG...TTTTTTTTTTCT/ATGTCACTGATT...CTTAG|GAA 2 1 79.368
189510779 GT-AG 0 4.396861748359833e-05 3349 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 10 4007849 4011197 Spizaetus tyrannus 252798 TTG|GTTTGTCTGA...CCAATCTCAACC/CTCAACCTAACT...TCCAG|AAA 0 1 83.721
189510780 GT-AG 0 0.000399377172614 3091 rna-gnl|WGS:VXAF|SPITYR_R05858_mrna 33843751 11 4011387 4014477 Spizaetus tyrannus 252798 CAG|GTATATTCAA...ATGACTTCATTT/AATGACTTCATT...TCTAG|TCT 0 1 94.991

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