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)

12 rows where transcript_id = 11997979

✎ 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
65073882 GT-AG 0 0.0001140486221869 1180 rna-XM_026109939.1 11997979 1 5754823 5756002 Dromaius novaehollandiae 8790 GAG|GTATTTGATA...CCAATCTAAAAT/ACCAATCTAAAA...AGAAG|CAG 0 1 8.427
65073883 GT-AG 0 1.000000099473604e-05 611 rna-XM_026109939.1 11997979 2 5756101 5756711 Dromaius novaehollandiae 8790 CAG|GTGAGCAAGG...CTTTTCTGACCT/TCTTTTCTGACC...GACAG|GAT 2 1 15.309
65073884 GT-AG 0 1.000000099473604e-05 5001 rna-XM_026109939.1 11997979 3 5756792 5761792 Dromaius novaehollandiae 8790 AAG|GTAAGAAATA...TGTGCCTGATCT/GTGTGCCTGATC...CACAG|GTT 1 1 20.927
65073885 GT-AG 0 1.000000099473604e-05 790 rna-XM_026109939.1 11997979 4 5761888 5762677 Dromaius novaehollandiae 8790 ATG|GTGAGTTGCT...GTAGCTTTGCCT/CTTTGCCTCAAG...TTTAG|CAC 0 1 27.598
65073886 GT-AG 0 1.000000099473604e-05 2041 rna-XM_026109939.1 11997979 5 5762741 5764781 Dromaius novaehollandiae 8790 ATG|GTGAGCTCCT...AGTGTTTTGTTG/AACCATCTCAGT...TCTAG|CTG 0 1 32.022
65073887 GT-AG 0 1.000000099473604e-05 2270 rna-XM_026109939.1 11997979 6 5764906 5767175 Dromaius novaehollandiae 8790 TTG|GTGAGTCACT...TATTTTTTGTTC/ACAGTACTCAAT...GGCAG|GCC 1 1 40.73
65073888 GT-AG 0 1.000000099473604e-05 5637 rna-XM_026109939.1 11997979 7 5767297 5772933 Dromaius novaehollandiae 8790 CTG|GTAATGACCG...AATACCTTGGGT/AATGAGTTAATA...TGCAG|GAG 2 1 49.228
65073889 GT-AG 0 1.000000099473604e-05 4761 rna-XM_026109939.1 11997979 8 5773028 5777788 Dromaius novaehollandiae 8790 GCG|GTGAGTAAAA...TCATCCTTGTTT/GCTCTTCTCACT...CACAG|GTA 0 1 55.829
65073890 GT-AG 0 1.000000099473604e-05 8061 rna-XM_026109939.1 11997979 9 5777853 5785913 Dromaius novaehollandiae 8790 CAG|GTAGGATTTA...TTTTGTTTAATC/TTTTGTTTAATC...TCTAG|AAT 1 1 60.323
65073891 GT-AG 0 1.000000099473604e-05 2650 rna-XM_026109939.1 11997979 10 5785963 5788612 Dromaius novaehollandiae 8790 CAG|GTAAGCTACC...GATTTTTTCTCC/CTTGTGCTCATT...TCCAG|GCT 2 1 63.764
65073892 GT-AG 0 1.038944328595334e-05 5270 rna-XM_026109939.1 11997979 11 5788753 5794022 Dromaius novaehollandiae 8790 CAG|GTAAGTTAAC...CTTTCTTTAACC/CTTTCTTTAACC...CACAG|GAC 1 1 73.596
65074172 GT-AG 0 2.525484744092411e-05 2520 rna-XM_026109939.1 11997979 12 5794161 5796680 Dromaius novaehollandiae 8790 TTG|GTAAGCATAT...CTGCCTTTTGTT/AAACTGTGCAGC...TTCAG|AAA   0 83.287

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