Skip to content

Instantly share code, notes, and snippets.

@mattions
Last active December 20, 2015 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattions/6087668 to your computer and use it in GitHub Desktop.
Save mattions/6087668 to your computer and use it in GitHub Desktop.
Notes on the NGS course
{
"metadata": {
"name": "NGS"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Extensions of the file\n",
"======================\n",
"\n",
"This is the content of the genome folder:\n",
"\n",
"```\n",
"participant@hook-norton:~/Desktop/RNA-seq$ ls genome/\n",
"Danio_rerio.Zv9.66.dna.fa ZV9.1.ebwt ZV9.4.ebwt\n",
"Danio_rerio.Zv9.66.dna.fa.fai ZV9.2.ebwt ZV9.rev.1.ebwt\n",
"zebrafish.zv9.genome ZV9.3.ebwt ZV9.rev.2.ebwt\n",
"```\n",
"Important extensions\n",
"--------------------\n",
"\n",
" \n",
" * .fa --> FASTA file \n",
" * .fai --> FASTA file indexed format\n",
" * .ebwt --> Indexed extension for the bowtie aligment `bowtie -m 1 -S bowtie_index.mm10 Oct4.fastq > Oct4.sam`\n",
" Bowtie aligns the reads to the genome, so you know which part of the genome has been transcribed.\n",
" * .bam --> Binary format created by SAmtools (Can be sorted or unsorted)\n",
" * .bai --> Index for the bam file\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
" "
],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment