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

✎ 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
35541176 GT-AG 0 0.0001230823467828 2863 rna-XM_009698766.1 6831636 1 26221 29083 Cariama cristata 54380 GGT|GTAAGTAGTC...GTTATCTTATTT/CTTATTTTCATG...TGCAG|CAA 0 1 15.947
35541177 GT-AG 0 1.000000099473604e-05 5550 rna-XM_009698766.1 6831636 2 29138 34687 Cariama cristata 54380 AAG|GTAAGCAATT...CCCCCCTTCTCC/ACTGAAATAATA...TGCAG|GGA 0 1 21.927
35541178 GT-AG 0 1.000000099473604e-05 1673 rna-XM_009698766.1 6831636 3 34781 36453 Cariama cristata 54380 GAG|GTGCATGTTC...CTGCCTGTAACC/CCCTTTCTAATC...CTTAG|GTA 0 1 32.226
35541179 GT-AG 0 1.000000099473604e-05 5875 rna-XM_009698766.1 6831636 4 36515 42389 Cariama cristata 54380 ATG|GTAAGTGCAT...GCAATATTAACT/TTATTACTAATT...TGCAG|GCT 1 1 38.981
35541180 GT-AG 0 1.000000099473604e-05 17556 rna-XM_009698766.1 6831636 5 42444 59999 Cariama cristata 54380 CAG|GTAAGGATTA...TTTTCCAAAACC/TTTAGTTTGAGT...TGTAG|GCA 1 1 44.961
35541181 GT-AG 0 0.0001219041406947 17808 rna-XM_009698766.1 6831636 6 60081 77888 Cariama cristata 54380 CAA|GTAAGCTAGT...TTGTTCTGAATG/TTTATATTCATT...CACAG|TGC 1 1 53.931
35541182 GT-AG 0 1.000000099473604e-05 9585 rna-XM_009698766.1 6831636 7 78022 87606 Cariama cristata 54380 CGG|GTAAGGAGAT...TTTTTCTTTGTG/AATGCACTAATA...TGCAG|TGT 2 1 68.66
35541183 GT-AG 0 1.5330541255264584e-05 8318 rna-XM_009698766.1 6831636 8 87647 95964 Cariama cristata 54380 TAT|GTAAGTATTC...GGTGCTGTAGCA/ATGCTATTTAAG...TTCAG|GGT 0 1 73.09
35541184 GT-AG 0 1.000000099473604e-05 17091 rna-XM_009698766.1 6831636 9 96030 113120 Cariama cristata 54380 CAG|GTAAGACCTC...TGAATTTTATCT/GTGAATTTTATC...TGCAG|AAA 2 1 80.288
35541185 GT-AG 0 0.0001341506031101 11965 rna-XM_009698766.1 6831636 10 113174 125138 Cariama cristata 54380 CAG|GTAACAATCA...TTTCCGTTAATC/CTGGGTTTAACT...TTCAG|TTA 1 1 86.157
35541186 GT-AG 0 1.000000099473604e-05 1402 rna-XM_009698766.1 6831636 11 125215 126616 Cariama cristata 54380 GTG|GTAAGTGATC...TCGTTCTTTCTT/GCCATGCTGATG...TACAG|GCT 2 1 94.574

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