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

✎ 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
24940779 GT-AG 0 1.4886012018526471e-05 101 Brast01G360000.1.v0.1.stacei 4793096 1 26809852 26809952 Brachypodium stacei 1071399 CAG|GTACTGTATC...ACTTTTTTACAC/AACTTTTTTACA...TGCAG|CTC 0 1 4.758
24940780 GT-AG 0 1.000000099473604e-05 87 Brast01G360000.1.v0.1.stacei 4793096 2 26810008 26810094 Brachypodium stacei 1071399 TAG|GTAATATATG...TTGTCTGTACAT/AAAAAACTGACG...TCCAG|CAA 1 1 6.344
24940781 GT-AG 0 1.000000099473604e-05 142 Brast01G360000.1.v0.1.stacei 4793096 3 26810238 26810379 Brachypodium stacei 1071399 GAG|GTGTGTCCCT...TGCTCATTAATT/GATGTGCTCATT...TGTAG|AAA 0 1 10.467
24940782 GT-AG 0 1.000000099473604e-05 615 Brast01G360000.1.v0.1.stacei 4793096 4 26810637 26811251 Brachypodium stacei 1071399 ATG|GTGAGTAACA...CTTCTCTTGATG/CATTAGCTTATC...ACCAG|GTG 2 1 17.878
24940783 GT-AG 0 1.000000099473604e-05 1270 Brast01G360000.1.v0.1.stacei 4793096 5 26811311 26812580 Brachypodium stacei 1071399 CAG|GTTGGTAACC...TAATTATTACCA/AAATGTCTGATA...TTTAG|CAT 1 1 19.579
24940784 GT-AG 0 5.966568365540634e-05 72 Brast01G360000.1.v0.1.stacei 4793096 6 26812822 26812893 Brachypodium stacei 1071399 CAG|GTAAGCTCCT...TTATTCTAAACA/ATTATTCTAAAC...GTCAG|GTA 2 1 26.528
24940785 GT-AG 0 0.0001121380495619 127 Brast01G360000.1.v0.1.stacei 4793096 7 26813045 26813171 Brachypodium stacei 1071399 CGG|GTATAACATA...GCACCTTTATTA/CCTTTATTAATT...TGTAG|CTT 0 1 30.882
24940786 GT-AG 0 0.0002904429745022 547 Brast01G360000.1.v0.1.stacei 4793096 8 26813382 26813928 Brachypodium stacei 1071399 CAG|GTCTGCATTA...CTTCCTTTCATT/CTTCCTTTCATT...TAAAG|CTG 0 1 36.938
24940787 GT-AG 0 6.304238932837444e-05 92 Brast01G360000.1.v0.1.stacei 4793096 9 26815429 26815520 Brachypodium stacei 1071399 AAG|GTATGATCAT...GCATTCTTATTA/TTCTTATTAACT...TATAG|GTT 0 1 80.19
24940788 GT-AG 0 1.000000099473604e-05 128 Brast01G360000.1.v0.1.stacei 4793096 10 26815590 26815717 Brachypodium stacei 1071399 CAG|GTAAGGAAAA...CCTGTCATATTT/GTCATATTTATG...TGCAG|GCT 0 1 82.18
24940789 GT-AG 0 0.0058671047270714 159 Brast01G360000.1.v0.1.stacei 4793096 11 26815937 26816095 Brachypodium stacei 1071399 GAG|GTAACTTTCA...ACGACATTAGTC/TGCTTGCTGACG...GACAG|CTT 0 1 88.495
24940790 GT-AG 0 1.000000099473604e-05 81 Brast01G360000.1.v0.1.stacei 4793096 12 26816189 26816269 Brachypodium stacei 1071399 AAG|GTTTGCCCTC...CCATCCAGAATG/AGAATGCTAACT...TACAG|TGC 0 1 91.176

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