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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, 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
153481033 GT-AG 0 6.562475478625053e-05 485 rna-XM_024535144.1 27592274 2 23852337 23852821 Physcomitrium patens 3218 AAG|GTATGTATCA...TTCCATTCAACC/GTTCCATTCAAC...CGCAG|GTG 0 1 50.318
153481034 GT-AG 0 1.000000099473604e-05 168 rna-XM_024535144.1 27592274 3 23851867 23852034 Physcomitrium patens 3218 CAG|GTTGAACTGT...CAGTTGTTATTG/GCAGTTGTTATT...TGCAG|GGT 2 1 56.515
153481035 GT-AG 0 0.0003197194286018 122 rna-XM_024535144.1 27592274 4 23851198 23851319 Physcomitrium patens 3218 CAG|GTATGATATT...ATTGTCTTATTT/TATTGTCTTATT...TGTAG|GCC 0 1 67.741
153481036 GT-AG 0 0.0062238058249557 115 rna-XM_024535144.1 27592274 5 23850919 23851033 Physcomitrium patens 3218 ATG|GTATGTTCTT...TTAATTTTAGTG/ACGTTATTAATT...TGCAG|GTA 2 1 71.106
153481037 GT-AG 0 1.000000099473604e-05 184 rna-XM_024535144.1 27592274 6 23850596 23850779 Physcomitrium patens 3218 CTG|GTGTGTGGTT...GCGATTTTGATT/GCGATTTTGATT...ACCAG|ATG 0 1 73.959
153481038 GT-AG 0 1.0766435683079665 143 rna-XM_024535144.1 27592274 7 23850369 23850511 Physcomitrium patens 3218 CTG|GTATTCTCTT...TCCTTCTTAATT/TTTTACCTGATT...TACAG|GTG 0 1 75.682
153481039 GT-AG 0 1.000000099473604e-05 183 rna-XM_024535144.1 27592274 8 23849901 23850083 Physcomitrium patens 3218 CAG|GTTAGTATGA...AGCTTTGTAATT/TTGTAATTGATC...TGCAG|CGT 0 1 81.531
153481040 GT-AG 0 0.0005189129929298 337 rna-XM_024535144.1 27592274 9 23849423 23849759 Physcomitrium patens 3218 CAG|GTATTGTTAC...TGGTTCTGAATC/CTGGTTCTGAAT...ATCAG|GTG 0 1 84.424
153481041 GT-AG 0 1.000000099473604e-05 176 rna-XM_024535144.1 27592274 10 23849047 23849222 Physcomitrium patens 3218 TAG|GTTGGTAAAC...GGATCGTTAATC/TCGTTAATCAAC...TTCAG|CAC 2 1 88.529
153481042 GT-AG 0 1.000000099473604e-05 164 rna-XM_024535144.1 27592274 11 23848678 23848841 Physcomitrium patens 3218 TGG|GTAAGGATTA...TGTCTTTTAAGC/CAATTGTTTATA...TGTAG|GAG 0 1 92.735
153481043 GT-AG 0 0.002455378373812 130 rna-XM_024535144.1 27592274 12 23848409 23848538 Physcomitrium patens 3218 CAG|GTATCGGACC...AATGTCTTCATA/AATGTCTTCATA...AGCAG|ATC 1 1 95.588
153487751 GT-AG 0 1.0003509599955916e-05 250 rna-XM_024535144.1 27592274 1 23854737 23854986 Physcomitrium patens 3218 ACC|GTAAGTGATG...AAATCTTTGAGT/AAATCTTTGAGT...TGCAG|GTA   0 19.659

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