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

✎ 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
106497051 GT-AG 0 1.000000099473604e-05 1126 rna-XM_021541937.2 19905863 2 50366535 50367660 Lonchura striata 40157 ATG|GTAGGTGAGA...AATACTTTAAAA/AATATATTCATT...CTAAG|ATG 0 1 2.928
106497052 GT-AG 0 1.000000099473604e-05 7082 rna-XM_021541937.2 19905863 3 50358023 50365104 Lonchura striata 40157 TCG|GTGAGTGAAG...GTTTGTTTAAAA/GTTTGTTTAAAA...AACAG|TGT 2 1 28.454
106497053 GT-AG 0 1.000000099473604e-05 405 rna-XM_021541937.2 19905863 4 50357493 50357897 Lonchura striata 40157 GAG|GTTGGAATGA...TTTTTTTCGAAA/AGGGGGTTAATA...TTCAG|CAA 1 1 30.685
106497054 GT-AG 0 0.000225931240267 359 rna-XM_021541937.2 19905863 5 50357045 50357403 Lonchura striata 40157 GTG|GTAGGTTTTG...TATTTCTTTGCT/TTTTATGTGATC...TGCAG|GCT 0 1 32.274
106497055 GT-AG 0 1.000000099473604e-05 3098 rna-XM_021541937.2 19905863 6 50353870 50356967 Lonchura striata 40157 AAA|GTAAGGTTTC...AATTTATTGACT/AATTTATTGACT...TGTAG|GAG 2 1 33.649
106497056 GT-AG 0 1.000000099473604e-05 12921 rna-XM_021541937.2 19905863 7 50340805 50353725 Lonchura striata 40157 TAG|GTGGGGAGAC...TCTTCTTTGTTT/TTACATTTGATC...CATAG|GGA 2 1 36.219
106497057 GT-AG 0 0.0005537351293705 2361 rna-XM_021541937.2 19905863 8 50336678 50339038 Lonchura striata 40157 TGG|GTATAATGCT...GAGATCTGAACA/TGAACACTCAAC...TGCAG|AAT 1 1 67.744
106497058 GT-AG 0 3.203327468009419e-05 591 rna-XM_021541937.2 19905863 9 50336001 50336591 Lonchura striata 40157 GAG|GTATGAATTT...CTATTGTTATCT/ACTATTGTTATC...TTTAG|GAA 0 1 69.279
106497059 GT-AG 0 2.003895207205784e-05 1546 rna-XM_021541937.2 19905863 10 50334409 50335954 Lonchura striata 40157 CTA|GTAAGTCTAT...AATTTCTTTATT/AATTTCTTTATT...TTTAG|ATG 1 1 70.1
106505145 GT-AG 0 1.000000099473604e-05 1054 rna-XM_021541937.2 19905863 1 50367747 50368800 Lonchura striata 40157 GAG|GTTGTTTGAC...TTGGCCATATTT/CCCCTTCTGACA...TCCAG|GTA   0 2.874
106505146 GT-AG 0 2.1398427212743623e-05 4549 rna-XM_021541937.2 19905863 11 50329673 50334221 Lonchura striata 40157 CAG|GTAATCACTC...CTCTTCTTTTTT/TGGAACTTCAGC...TTCAG|AAA   0 73.438

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