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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
140325594 GT-AG 0 1.000000099473604e-05 864 rna-XM_015760972.2 25439190 1 28457608 28458471 Oryza sativa 4530 GCG|GTACGGATGC...AATTTCTTCATG/TTTGTTCTGAGT...TGCAG|GTT 0 1 7.437
140325595 GT-AG 0 1.000000099473604e-05 930 rna-XM_015760972.2 25439190 2 28456468 28457397 Oryza sativa 4530 CAG|GTCGGTACAA...TCATTCCTACCT/TTACCATTCATT...TTCAG|GTC 0 1 13.096
140325596 GT-AG 0 0.0002097903191829 78 rna-XM_015760972.2 25439190 3 28456195 28456272 Oryza sativa 4530 CAG|GTTTTTATAA...TAAATCTTAATT/CATTTTGTCATT...GGAAG|GTT 0 1 18.351
140325597 GT-AG 0 0.0001087189694967 1050 rna-XM_015760972.2 25439190 4 28454789 28455838 Oryza sativa 4530 CAG|GTACATAATT...TCCTCTTTAGTT/TTTAGTTTCATC...TACAG|TAT 2 1 27.944
140325598 GT-AG 0 1.000000099473604e-05 78 rna-XM_015760972.2 25439190 5 28454485 28454562 Oryza sativa 4530 AAG|GTTAGAAAGC...ACTGCCTTAATT/GGTTGTCTCATC...CTTAG|GTG 0 1 34.034
140325599 GT-AG 0 4.81532125453873e-05 104 rna-XM_015760972.2 25439190 6 28454212 28454315 Oryza sativa 4530 CAG|GTTACCCCTT...ATTCACTGAACT/TCAAAATTCACT...AACAG|CAC 1 1 38.588
140325600 GT-AG 0 1.000000099473604e-05 814 rna-XM_015760972.2 25439190 7 28452153 28452966 Oryza sativa 4530 AAG|GTTAGTGCAG...TTTTCTTTGCCC/AATATTTTCAGT...TGTAG|ATA 1 1 72.137
140325601 GT-AG 0 1.000000099473604e-05 74 rna-XM_015760972.2 25439190 8 28451907 28451980 Oryza sativa 4530 CAG|GTTTGTCATC...CTTTTTTTATAG/ACTTTTTTTATA...TTCAG|TCG 2 1 76.772
140325602 GT-AG 0 1.000000099473604e-05 614 rna-XM_015760972.2 25439190 9 28451071 28451684 Oryza sativa 4530 AAG|GTAGAGTCTG...CCAATCATATCA/CTTCCAATCATA...TGTAG|GAA 2 1 82.754
140325603 GT-AG 0 1.000000099473604e-05 1037 rna-XM_015760972.2 25439190 10 28449896 28450932 Oryza sativa 4530 AAG|GTAATATTTC...TCATTCTGATTG/GCTCTTCTAATG...TTCAG|GAC 2 1 86.473
140325604 GT-AG 0 1.000000099473604e-05 290 rna-XM_015760972.2 25439190 11 28449371 28449660 Oryza sativa 4530 CAG|GTGTGTTAAG...ATCAATTTATCA/ATGAGTCTGACT...TGCAG|GCA 0 1 92.805
140325605 GT-AG 0 0.0008485873465561 866 rna-XM_015760972.2 25439190 12 28448445 28449310 Oryza sativa 4530 GCG|GTAAGCTACA...TGAATCTTAACG/ATGAATCTTAAC...TACAG|GTG 0 1 94.422
140325606 GT-AG 0 0.5409886933516348 79 rna-XM_015760972.2 25439190 13 28448294 28448372 Oryza sativa 4530 CAG|GTATCCCAGA...TATTCCTTTGTT/TGTTGTTTTACT...TTCAG|GAT 0 1 96.362

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