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)

10 rows where transcript_id = 8205997

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
43958877 GT-AG 0 0.0005808195305986 19558 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 1 3860919 3880476 Chloropsis hardwickii 667144 AAG|GTAACTCACC...AATTCCTTTTTT/GCACAATTAAAT...CTCAG|AAC 0 1 30.471
43958878 GT-AG 0 1.000000099473604e-05 15452 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 2 3845284 3860735 Chloropsis hardwickii 667144 AAG|GTAAGCTCTT...TGTTTCTGGTTT/ATGCTACTGATG...TCCAG|TTC 0 1 37.647
43958879 GT-AG 0 1.000000099473604e-05 2829 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 3 3842290 3845118 Chloropsis hardwickii 667144 AAG|GTACAAACTC...AAAACCTCATGG/AAAAACCTCATG...TGCAG|CTG 0 1 44.118
43958880 GT-AG 0 1.000000099473604e-05 4833 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 4 3837240 3842072 Chloropsis hardwickii 667144 TGG|GTAAGTAAAA...ACACTCTGATCC/GACACTCTGATC...CACAG|GTA 1 1 52.627
43958881 GT-AG 0 1.000000099473604e-05 1807 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 5 3835199 3837005 Chloropsis hardwickii 667144 ATG|GTAAGATGAT...TTTTTGTTACTA/TTGTTACTAACA...TTTAG|CCA 1 1 61.804
43958882 GT-AG 0 1.000000099473604e-05 6171 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 6 3828763 3834933 Chloropsis hardwickii 667144 AAC|GTGAGTACCC...AACTCTATAAAG/GTTTGTTTTATT...TTTAG|GGT 2 1 72.196
43958883 GT-AG 0 1.000000099473604e-05 2914 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 7 3825653 3828566 Chloropsis hardwickii 667144 GAG|GTAAGATAAA...TTTTCCTTCTTC/TATTTACTAATT...CCAAG|GAG 0 1 79.882
43958884 GT-AG 0 0.0297926931931383 2005 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 8 3823426 3825430 Chloropsis hardwickii 667144 CGG|GTATGTTTTA...CTGTCATTGATT/ATTGATTTAATC...TTCAG|AAA 0 1 88.588
43958885 GT-AG 0 1.000000099473604e-05 2938 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 9 3820407 3823344 Chloropsis hardwickii 667144 CAG|GTAATCACAG...TGGACATTAAAG/CTCATAGTAAGT...TTCAG|AAG 0 1 91.765
43958886 AA-AA 0 3.2103169992274124e-05 726 rna-gnl|WGS:WEIW|CHLHAR_R12964_mrna 8205997 10 3819603 3820328 Chloropsis hardwickii 667144 GGC|AAGTGGAATT...GGATTACTGACT/GGATTACTGACT...GAGAA|CTT 0 1 94.824

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