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

✎ 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
127495036 GT-AG 0 1.000000099473604e-05 100839 rna-XM_024765657.1 23404091 2 166393 267231 Neophocaena asiaeorientalis 189058 AGG|GTAAGAAGTT...TTTTTTTTTTCT/TTGGAAATCATT...TACAG|GAG 1 1 8.459
127495037 GT-AG 0 0.015622092271755 19089 rna-XM_024765657.1 23404091 3 147157 166245 Neophocaena asiaeorientalis 189058 AAG|GTATCATTAC...GTTTTCTGTTCA/GAAGTACTAATG...TCCAG|AGG 1 1 13.985
127495038 GT-AG 0 1.000000099473604e-05 2601 rna-XM_024765657.1 23404091 4 144404 147004 Neophocaena asiaeorientalis 189058 GAG|GTAAGACGAA...GTTTTCTCATTT/TGTTTTCTCATT...CCTAG|ATT 0 1 19.699
127495039 GT-AG 0 3.866346900916495e-05 3385 rna-XM_024765657.1 23404091 5 140919 144303 Neophocaena asiaeorientalis 189058 CAG|GTATGGTAAA...TTTTCTCTGACA/TTTTCCCTCATT...ATCAG|GTT 1 1 23.459
127495040 GT-AG 0 1.961176681537224e-05 3071 rna-XM_024765657.1 23404091 6 137660 140730 Neophocaena asiaeorientalis 189058 GAG|GTAACACGTA...CTTTCTTTTTCC/TCTGGGCTAAAA...TCCAG|GGA 0 1 30.526
127495041 GT-AG 0 1.000000099473604e-05 1228 rna-XM_024765657.1 23404091 7 136309 137536 Neophocaena asiaeorientalis 189058 GAG|GTGAGTCTCT...GTTTCCTTACTT/TGTTTCCTTACT...TGCAG|ATA 0 1 35.15
127495042 GT-AG 0 1.000000099473604e-05 2793 rna-XM_024765657.1 23404091 8 133309 136101 Neophocaena asiaeorientalis 189058 GAG|GTAATAACAA...GTGGCCTTGATC/TATTCACTAATT...CATAG|GTC 0 1 42.932
127495043 GT-AG 0 1.000000099473604e-05 230 rna-XM_024765657.1 23404091 9 132998 133227 Neophocaena asiaeorientalis 189058 GAG|GTAATACTTT...TGCACGTTGACT/TACTTTCTCATT...TATAG|GTC 0 1 45.977
127495044 GT-AG 0 1.000000099473604e-05 2351 rna-XM_024765657.1 23404091 10 130104 132454 Neophocaena asiaeorientalis 189058 AAG|GTGAGGAGAT...TTTGCTTTCTCT/TCACTTCTCACT...TGCAG|ATC 0 1 66.391
127495045 GT-AG 0 1.000000099473604e-05 1488 rna-XM_024765657.1 23404091 11 128429 129916 Neophocaena asiaeorientalis 189058 TGG|GTGAGTACTG...TATACTTTTGCT/GCTCCCTTCAGT...TGCAG|GCG 1 1 73.421
127495046 GT-AG 0 1.000000099473604e-05 457 rna-XM_024765657.1 23404091 12 127573 128029 Neophocaena asiaeorientalis 189058 TTG|GTAAGGATTT...CCTTTCTCAACC/TCCTTTCTCAAC...AATAG|AAA 1 1 88.421
127495047 GT-AG 0 1.000000099473604e-05 1347 rna-XM_024765657.1 23404091 13 126009 127355 Neophocaena asiaeorientalis 189058 TGG|GTGAGAGCTC...GTTATTTTAACT/GTTATTTTAACT...TTTAG|GCG 2 1 96.579
127495049 GT-AG 0 1.000000099473604e-05 2087 rna-XM_024765657.1 23404091 1 267389 269475 Neophocaena asiaeorientalis 189058 CAG|GTAAAGACGA...ATGTTTTTCATT/ATGTTTTTCATT...TTCAG|GTT   0 7.857

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