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

✎ 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
106494251 GT-AG 0 1.000000099473604e-05 6361 rna-XM_021530625.1 19905770 4 47194226 47200586 Lonchura striata 40157 CAG|GTAAAAAAAC...CTTTTCTCATCT/CCTTTTCTCATC...CGCAG|GCT 2 1 2.757
106494252 GT-AG 0 1.000000099473604e-05 2642 rna-XM_021530625.1 19905770 5 47191433 47194074 Lonchura striata 40157 GAG|GTGAGGCTCT...CTGTCTTTATTT/TCTGTCTTTATT...TTCAG|TTG 0 1 3.827
106494253 GT-AG 0 1.000000099473604e-05 2944 rna-XM_021530625.1 19905770 6 47188401 47191344 Lonchura striata 40157 GAG|GTATGGAAAA...ATTTATTTATTT/TATTTATTTATT...TTTAG|GTC 1 1 4.451
106494254 GT-AG 0 0.0001382265805765 2357 rna-XM_021530625.1 19905770 7 47185958 47188314 Lonchura striata 40157 AAG|GTAGACAATA...TATACTTTGATT/CTTTGATTTATT...TTCAG|GAA 0 1 5.061
106494255 GT-AG 0 1.000000099473604e-05 1121 rna-XM_021530625.1 19905770 8 47184725 47185845 Lonchura striata 40157 AGG|GTAAGTATAA...ATCTTTTTAACT/ATCTTTTTAACT...TATAG|GGC 1 1 5.854
106494256 GT-AG 0 0.0002986581172235 1274 rna-XM_021530625.1 19905770 9 47183304 47184577 Lonchura striata 40157 CAG|GTAATCTTAG...GTTGTTTTAGAG/TAATTGTTCATT...TGCAG|ACG 1 1 6.896
106494257 GT-AG 0 0.0683564541222686 3478 rna-XM_021530625.1 19905770 10 47178343 47181820 Lonchura striata 40157 CAG|GTATGCTTAA...GCCTTTTTGATT/TCTTTTTTCATG...GCTAG|ATC 2 1 17.407
106494258 GT-AG 0 1.000000099473604e-05 3901 rna-XM_021530625.1 19905770 11 47174350 47178250 Lonchura striata 40157 GAG|GTAATGTGTT...AACTCTGTGATT/GTGATTTTCACA...TTCAG|GGA 1 1 18.059
106505065 GT-AG 0 1.000000099473604e-05 1147 rna-XM_021530625.1 19905770 1 47212995 47214141 Lonchura striata 40157 GTG|GTAAGGTTTG...CCTTCCTTCTCA/TTCCTTCTCAAA...ACCAG|GAC   0 0.68
106505066 GT-AG 0 1.000000099473604e-05 2196 rna-XM_021530625.1 19905770 2 47210652 47212847 Lonchura striata 40157 GAG|GTAGGGAACT...TGTTTCTCACAC/CTGTTTCTCACA...TGCAG|GGA   0 1.722
106505067 GT-AG 0 1.000000099473604e-05 9404 rna-XM_021530625.1 19905770 3 47201125 47210528 Lonchura striata 40157 GGG|GTAAGTCTGT...TCTGTATTAATG/TCTGTATTAATG...TCCAG|AAC   0 2.594

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