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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
140325743 GT-AG 0 2.227186608237873e-05 83 rna-XM_026026258.1 25439201 2 19380709 19380791 Oryza sativa 4530 GGG|GTAAAATTAT...AATTTCTTAATC/TTTTTTTTAATT...TTCAG|GTG 0 1 5.519
140325744 GT-AG 0 4.718787824513231e-05 202 rna-XM_026026258.1 25439201 3 19380847 19381048 Oryza sativa 4530 TTC|GTAAGTGTCT...GCTTACTTGATT/ACTTGATTCATT...GGTAG|AAG 1 1 6.978
140325745 GT-AG 0 0.0001249503870312 685 rna-XM_026026258.1 25439201 4 19381225 19381909 Oryza sativa 4530 AAG|GTAGGCTTGT...TCTCTATTAGCA/AATTTTGTTATA...ATTAG|GCT 0 1 11.648
140325746 GT-AG 0 1.000000099473604e-05 92 rna-XM_026026258.1 25439201 5 19382132 19382223 Oryza sativa 4530 ACA|GTGAGTGATG...TTCTTTTTATCT/TGTATATTGATC...TGAAG|GTT 0 1 17.538
140325747 GT-AG 0 1.000000099473604e-05 628 rna-XM_026026258.1 25439201 6 19382463 19383090 Oryza sativa 4530 AAT|GTAAGTTCAT...TATATTTTGTTC/ATCTGTTTCACA...TGCAG|GTC 2 1 23.879
140325748 GT-AG 0 0.0002172151111598 74 rna-XM_026026258.1 25439201 7 19383617 19383690 Oryza sativa 4530 AAT|GTACAATGCC...TAATTGTTAACT/TAATTGTTAACT...CGCAG|GGT 0 1 37.835
140325749 GT-AG 0 0.002944362994095 449 rna-XM_026026258.1 25439201 8 19383965 19384413 Oryza sativa 4530 AAG|GTATACCATA...CATAACTTACCA/ACATAACTTACC...AAAAG|GTT 1 1 45.105
140325750 GT-AG 0 0.0166749105664607 416 rna-XM_026026258.1 25439201 9 19385078 19385493 Oryza sativa 4530 TAG|GTATACATTA...ATATTTTTACAG/TATATTTTTACA...TCTAG|TGG 2 1 62.722
140325751 GT-AG 0 1.677146815155713e-05 91 rna-XM_026026258.1 25439201 10 19385723 19385813 Oryza sativa 4530 AAG|GTACATGCCT...TTTGCCTAATTT/TTTTGCCTAATT...TGCAG|TCA 0 1 68.798
140325752 GT-AG 0 1.000000099473604e-05 117 rna-XM_026026258.1 25439201 11 19386081 19386197 Oryza sativa 4530 AGG|GTGCGAACTC...TCATTATTAACA/TTTTGGTTCACT...GCTAG|GTC 0 1 75.882
140325753 GT-AG 0 0.0166137056007458 92 rna-XM_026026258.1 25439201 12 19386462 19386553 Oryza sativa 4530 AAG|GTTGCCTTCT...ATAACTTTATTG/ACTTTATTGACG...TTCAG|ACT 0 1 82.887
140340910 GT-AG 0 0.0002853030713168 775 rna-XM_026026258.1 25439201 1 19379892 19380666 Oryza sativa 4530 TCG|GTATTTCCAG...CCAATTTAAATA/TATGGACTAAGT...TTCAG|AAG   0 5.28

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