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

✎ 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
204419060 GT-AG 0 1.000000099473604e-05 721 rna-XM_038830607.1 36995194 1 8821823 8822543 Tripterygium wilfordii 458696 CAG|GTAATAAACG...TAGTTATTAATT/TAGTTATTAATT...TTCAG|GTA 0 1 6.082
204419061 GT-AG 0 3.327271309762196e-05 101 rna-XM_038830607.1 36995194 2 8821667 8821767 Tripterygium wilfordii 458696 TAC|GTAAGTATAC...AGAATTTTGATA/AGAATTTTGATA...TACAG|AGA 1 1 7.53
204419062 GT-AG 0 1.6209910964369678 186 rna-XM_038830607.1 36995194 3 8821305 8821490 Tripterygium wilfordii 458696 AAG|GTACCCTGTA...TTAGACTTGATA/CTTGATATTATT...AACAG|ATT 0 1 12.164
204419063 GT-AG 0 6.896431630071838e-05 94 rna-XM_038830607.1 36995194 4 8820989 8821082 Tripterygium wilfordii 458696 ACA|GTAAGCATAA...TAGGTCATAAAA/TCTTGTGTGATT...ACTAG|GTT 0 1 18.009
204419064 GT-AG 0 1.000000099473604e-05 120 rna-XM_038830607.1 36995194 5 8820630 8820749 Tripterygium wilfordii 458696 AAT|GTAAGTATGT...ATTGTTTTCACT/ATTGTTTTCACT...ACAAG|GTC 2 1 24.302
204419065 GT-AG 0 1.000000099473604e-05 165 rna-XM_038830607.1 36995194 6 8819939 8820103 Tripterygium wilfordii 458696 CAG|GTAATTCCAA...TTTTTCTTTTCC/CTATGCTTCATC...TTCAG|GGG 0 1 38.152
204419066 GT-AG 0 1.4191207124937878e-05 78 rna-XM_038830607.1 36995194 7 8819587 8819664 Tripterygium wilfordii 458696 AAG|GTAACTGAAC...ATTTTCTTGTAT/GATCGTCTGATA...TTTAG|GAA 1 1 45.366
204419067 GT-AG 0 1.000000099473604e-05 87 rna-XM_038830607.1 36995194 8 8818830 8818916 Tripterygium wilfordii 458696 AAG|GTCAGTTACC...GCCTCTCTAACT/GCCTCTCTAACT...TTTAG|TGG 2 1 63.007
204419068 GT-AG 0 1.000000099473604e-05 79 rna-XM_038830607.1 36995194 9 8818522 8818600 Tripterygium wilfordii 458696 AAA|GTAAGTCTCG...TGTTACTTGAAG/AAAATTGTAAAT...TGCAG|GAT 0 1 69.036
204419069 GT-AG 0 1.000000099473604e-05 81 rna-XM_038830607.1 36995194 10 8818174 8818254 Tripterygium wilfordii 458696 AAG|GTACAAACTT...ACTTTTCTAACT/ACTTTTCTAACT...TCCAG|GTT 0 1 76.066
204419070 GT-AG 0 0.0031189857349481 98 rna-XM_038830607.1 36995194 11 8817812 8817909 Tripterygium wilfordii 458696 AAG|GTATTCACCA...CACAACTTGATT/AATTATTTCATG...TGCAG|ACT 0 1 83.017

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