Visualizing large scale genomic variation

Visualizing large scale genomic variation

Visualizing large scale genomic variations in short read data.

1 result • updated 3.5 years ago by Istvan Albert

Visualizing large scale genomic variations in short read data.

A large large-scale variation (over 50bp) typically does not fit into the sequence portion of a short read.

Paired-end read sequencing is a methodology that allows us to identify where the reorganization took place. Pairs in the unexpected orientation, template sizes of unexpected lengths together can provide the necessary guidance to identify the "reorganization" junction points relative to the reference genome.

This recipe provides code that:

  1. Creates a modified genome based on the reference.
  2. Simulates sequencing reads from this modified genome
  3. Aligns the simulated reads against the reference
  4. Allow you to visualize the results in IGV

How to edit the genome

You may manually edit the file specified as $GENOME to modify certain parts. You may also programmatically do so with the commands like:

  1. Large deletion. Deletion applied from 2000-3000

     cat $REF | seqret --filter -sbegin 1 -send 2000 > part1
     cat $REF | seqret --filter -sbegin 3000 > part2
     cat part1 part2 | union -filter  > $GENOME
    
  2. Copy number variation. The first 2000 bases are present three times.

      cat $REF | seqret --filter -sbegin 1 -send 2000 > part1
      cat part1 part1 $REF | union -filter  > GENOME.fa
    
  3. Swap regions in the genome. The first 5000 bp are moved to the end.

     cat $REF | seqret --filter -send 5000 > part1
     cat $REF | seqret --filter -sbegin 5000 > part2
     cat part2 part1 | union -filter  > GENOME.fa
    
  4. Reverse complement a region of the genome (1000 to 2000).

     cat $REF | seqret --filter -sbegin 1 -send 1000 > part1
     cat $REF | seqret --filter -sbegin 1000 -send 2000 -sreverse1 > part2
     cat $REF | seqret --filter -sbegin 2000 > part3
    

For more information see:

Copy recipe
You need write access to the project to edit.
You need write access to the original recipe to edit.
Recipe Interface Builder
Click the buttons on the right to create new fields.
Interface Editor
Edit the content of each interface element.
You need write access to the original recipe to edit.
Edit Recipe
Recipe display name
Unique identifier for the recipe.
Image :
Optional image for the recipe ( 500px Maximum ).
Rank:
Used to order recipes (optional).

Insert Image

Back

Powered by the release 2.3.6