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)

14 rows where transcript_id = 94491

✎ 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
498791 GT-AG 0 1.000000099473604e-05 32916 rna-XM_009077354.1 94491 1 48737 81652 Acanthisitta chloris 57068 GAT|GTGAGTACAT...TTTTTTATGACT/TTTTTTATGACT...TGCAG|GAT 0 1 4.56
498792 GT-AG 0 1.000000099473604e-05 730 rna-XM_009077354.1 94491 2 47895 48624 Acanthisitta chloris 57068 ACA|GTAAGTGAAG...GCTGTCTGAACC/TAGCTCCTCATA...CACAG|CCT 1 1 10.714
498793 GT-AG 0 1.3193156142883497e-05 10566 rna-XM_009077354.1 94491 3 37200 47765 Acanthisitta chloris 57068 CAG|GTAAACAGCT...TATGTTTTATAT/CTATGTTTTATA...GACAG|TGA 1 1 17.802
498794 GT-AG 0 6.308514723511757e-05 95 rna-XM_009077354.1 94491 4 36948 37042 Acanthisitta chloris 57068 GTT|GTGAGTTTAA...CAATCCTTGATT/CAATCCTTGATT...TTCAG|TAA 2 1 26.429
498795 GT-AG 0 1.000000099473604e-05 746 rna-XM_009077354.1 94491 5 36067 36812 Acanthisitta chloris 57068 ATG|GTAAGAGCTT...TACCCCTTTTTT/CCTGAAGTTACC...CACAG|GTA 2 1 33.846
498796 GT-AG 0 1.000000099473604e-05 16400 rna-XM_009077354.1 94491 6 19570 35969 Acanthisitta chloris 57068 GAG|GTGAGGATTA...TTCTTCTTACTT/GTTCTTCTTACT...TTCAG|AAA 0 1 39.176
498797 GT-AG 0 1.000000099473604e-05 745 rna-XM_009077354.1 94491 7 18681 19425 Acanthisitta chloris 57068 AAG|GTAGGAATTC...CTCTCCTTGGCC/AAGGTTTTCACC...TGCAG|GTG 0 1 47.088
498798 GT-AG 0 0.0004356065063089 588 rna-XM_009077354.1 94491 8 17919 18506 Acanthisitta chloris 57068 GTT|GTACGTGAGC...GTGTCTTTAATG/TTTTCTCTAATA...CCCAG|GAC 0 1 56.648
498799 GT-AG 0 1.000000099473604e-05 1550 rna-XM_009077354.1 94491 9 16277 17826 Acanthisitta chloris 57068 AGT|GTGAGTGTTC...GTGGTTTTTTCA/AAGGAAATCATG...TACAG|GTT 2 1 61.703
498800 GT-AG 0 1.000000099473604e-05 692 rna-XM_009077354.1 94491 10 15522 16213 Acanthisitta chloris 57068 TAG|GTGAGTATAA...TGCTCCTAGATG/CAGACATTAACA...CATAG|AGA 2 1 65.165
498801 GT-AG 0 2.697701133043237e-05 6432 rna-XM_009077354.1 94491 11 8951 15382 Acanthisitta chloris 57068 GAG|GTAAATATTG...GGGGTTTTATCT/TTTTCTGTGATT...TACAG|ATT 0 1 72.802
498802 GT-AG 0 1.000000099473604e-05 1350 rna-XM_009077354.1 94491 12 7520 8869 Acanthisitta chloris 57068 CAG|GTAAGATTTA...TCACCTGTGATT/CTGTGATTTATT...AACAG|CCT 0 1 77.253
498803 GT-AG 0 1.000000099473604e-05 2391 rna-XM_009077354.1 94491 13 5021 7411 Acanthisitta chloris 57068 GGG|GTGAGATAAA...TTAAATTTAATC/AATTTAATCATT...AACAG|CTA 0 1 83.187
498804 GT-AG 0 1.000000099473604e-05 3921 rna-XM_009077354.1 94491 14 959 4879 Acanthisitta chloris 57068 GTG|GTGAGTGAGC...TTTTTTTTCACC/TTTTTTTTCACC...TTCAG|TGT 0 1 90.934

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