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

✎ 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
35540871 GT-AG 0 1.000000099473604e-05 52909 rna-XM_009694752.1 6831607 1 34287 87195 Cariama cristata 54380 TTG|GTAAGTGATA...ACTACCTTATTT/AATTAACTTACT...TCCAG|GTA 2 1 6.095
35540872 GT-AG 0 1.000000099473604e-05 26161 rna-XM_009694752.1 6831607 2 87290 113450 Cariama cristata 54380 GAG|GTAAGATACG...TTTTTTTTCTTT/TTTCTGTTAAGT...TCTAG|GGG 0 1 11.94
35540873 GT-AG 0 0.000179179545374 22593 rna-XM_009694752.1 6831607 3 113504 136096 Cariama cristata 54380 TGG|GTAAGCTTAG...TGGTCATTACCT/CTGGTGGTCATT...TGTAG|GTA 2 1 15.236
35540874 GT-AG 0 1.000000099473604e-05 26770 rna-XM_009694752.1 6831607 4 136194 162963 Cariama cristata 54380 ACT|GTAAGTAGAT...TTCGTGTTAAAA/TTAAAACTGATT...CTTAG|AAG 0 1 21.269
35540875 GT-AG 0 1.000000099473604e-05 7310 rna-XM_009694752.1 6831607 5 163081 170390 Cariama cristata 54380 GAG|GTAAGATGTA...ATGTTTTTCACA/ATGTTTTTCACA...TCTAG|ATG 0 1 28.545
35540876 GT-AG 0 0.0013485611917084 2434 rna-XM_009694752.1 6831607 6 170480 172913 Cariama cristata 54380 GAG|GTATGTTCAA...CATTCTTCAACT/TGATTTATCATT...TGCAG|GTG 2 1 34.08
35540877 GT-AG 0 1.000000099473604e-05 1688 rna-XM_009694752.1 6831607 7 173063 174750 Cariama cristata 54380 TCC|GTGAGTATAG...TCTTCTTTAAAA/TACAGTCTGATT...TACAG|TTT 1 1 43.346
35540878 GT-AG 0 1.000000099473604e-05 21450 rna-XM_009694752.1 6831607 8 174882 196331 Cariama cristata 54380 GAG|GTAAGGCTAT...TTCTTCTCATCA/CTTCTTCTCATC...TGCAG|AGG 0 1 51.493
35540879 GT-AG 0 1.000000099473604e-05 59279 rna-XM_009694752.1 6831607 9 196647 255925 Cariama cristata 54380 CAT|GTGAGTATGA...TGTTCCTTTCTT/TTGGCACTTAAA...TTCAG|ATG 0 1 71.082
35540880 GT-AG 0 0.5855765060569923 2420 rna-XM_009694752.1 6831607 10 256015 258434 Cariama cristata 54380 CAG|GTATCTCTCT...TTACCTTTATTC/CCTTTATTCATC...TGCAG|GTT 2 1 76.617
35540881 GT-AG 0 1.000000099473604e-05 2791 rna-XM_009694752.1 6831607 11 258573 261363 Cariama cristata 54380 GAG|GTACGTGGAG...CATTTGTTGAAC/CATTTGTTGAAC...TCTAG|GTT 2 1 85.199
35540882 GT-AG 0 1.000000099473604e-05 624 rna-XM_009694752.1 6831607 12 261527 262150 Cariama cristata 54380 GAG|GTTTGTACAT...ATGCTCTTTTTT/CAAATACATACA...TTCAG|ATT 0 1 95.336

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