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)

13 rows where transcript_id = 28932368

✎ 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
161300890 GT-AG 0 0.0001346224964594 433 rna-XM_024592174.1 28932368 1 43700699 43701131 Populus trichocarpa 3694 AAG|GTATGAATTT...AGTCTTTTGATT/AGTCTTTTGATT...TGTAG|ATG 1 1 26.482
161300891 GT-AG 0 0.0001052917551995 219 rna-XM_024592174.1 28932368 2 43701273 43701491 Populus trichocarpa 3694 ACA|GTAAGTTATT...GATCCCTTGTTT/AAATTAGTGATC...TGCAG|GAA 1 1 29.258
161300892 GT-AG 0 1.000000099473604e-05 214 rna-XM_024592174.1 28932368 3 43701650 43701863 Populus trichocarpa 3694 AAG|GTACTAATCT...ACGACCTAATTT/GTGATATTCACT...TTCAG|GGG 0 1 32.369
161300893 GT-AG 0 1.000000099473604e-05 337 rna-XM_024592174.1 28932368 4 43702075 43702411 Populus trichocarpa 3694 TCG|GTTAGGATTT...TTGGCTTTGGTA/TATGAATTGATA...GGCAG|ATG 1 1 36.523
161300894 GT-AG 0 1.000000099473604e-05 78 rna-XM_024592174.1 28932368 5 43702650 43702727 Populus trichocarpa 3694 ATA|GTAAGTCTAT...TTATTTCTATTG/CTAACACTAACA...TACAG|TGG 2 1 41.209
161300895 GT-AG 0 1.3476761169155584e-05 85 rna-XM_024592174.1 28932368 6 43702879 43702963 Populus trichocarpa 3694 CAT|GTAAGTGTCA...ATTTCTTTGTTT/CTTTGTTTCAAA...ATCAG|GCT 0 1 44.182
161300896 GT-AG 0 0.0001660679399918 3039 rna-XM_024592174.1 28932368 7 43703266 43706304 Populus trichocarpa 3694 ACG|GTAGATTTGT...AGGACTCTAATT/CACTTGCTCACC...AAAAG|AAA 2 1 50.128
161300897 GT-AG 0 1.000000099473604e-05 554 rna-XM_024592174.1 28932368 8 43707639 43708192 Populus trichocarpa 3694 TAG|GTACGAAGCT...CTATTGTTGATT/CTATTGTTGATT...GTCAG|ATC 1 1 76.393
161300898 GT-AG 0 0.0011830021102016 196 rna-XM_024592174.1 28932368 9 43708340 43708535 Populus trichocarpa 3694 GCA|GTAAGTTGTT...CTTTCCTTTACA/CTTTCCTTTACA...AACAG|GTA 1 1 79.287
161300899 GT-AG 0 1.000000099473604e-05 273 rna-XM_024592174.1 28932368 10 43708682 43708954 Populus trichocarpa 3694 AAG|GTAATAATAC...CAAATTTTACAT/TCAAATTTTACA...TTCAG|GGA 0 1 82.162
161300900 GT-AG 0 1.000000099473604e-05 79 rna-XM_024592174.1 28932368 11 43709166 43709244 Populus trichocarpa 3694 TTG|GTTTGAAACT...GTCTCTTTAATG/AATGCATTGACT...GACAG|ATC 1 1 86.316
161300901 GT-AG 0 1.8938536983750387e-05 74 rna-XM_024592174.1 28932368 12 43709483 43709556 Populus trichocarpa 3694 ATA|GTAAGTACCT...ATGCCCCTAACT/ATGCCCCTAACT...TGCAG|TGG 2 1 91.002
161300902 GT-AG 0 0.0006337950683721 80 rna-XM_024592174.1 28932368 13 43709708 43709787 Populus trichocarpa 3694 CAT|GTAAGTTTAA...ATTTCTTTATTC/TTTATTCTAAAT...ATCAG|GCA 0 1 93.975

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