...
First, we'll run breseq on a small data set to be sure that it is installed correctly, and to get a taste for what the output looks like. This sample is a mixed population of bacteriophage lambda that was co-evolved in lab with its E. coli hosts.
Data
The data files for this example are in the path:
Code Block |
---|
$BI/ngs_course/lambda_mixed_pop/data
|
Copy this directory to a new directory called BDIB_breseq in your $SCRATCH
space and cd
into it.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
cds
mkdir BDIB_breseq_lambda
cp $BI/ngs_course/lambda_mixed_pop/data/* BDIB_breseq_lambda
cd BDIB_breseq_lambda
ls |
If the copy worked correctly you should see the following 2 files:
File Name | Description | Sample |
---|---|---|
| Single-end Illumina 36-bp reads | Evolved lambda bacteriophage mixed population genome sequencing |
| Reference Genome | Bacteriophage lambda |
Running breseq
Because this data set is relatively small (roughly 100x coverage of a 48,000 bp genome), a breseq run will take < 5 minutes. Submit this command to the TACC development queue or run on an idev node.
...
language | bash |
---|---|
title | breseq prep and commands |
...
Environment
To set your profile up to run breseq, we need to add "module load bowtie/2.1.0" to your profile.
Code Block | ||||
---|---|---|---|---|
| ||||
cdh #move to your home directory
echo "module load bowtie/2.1.0" >> .profile #this command updates your profile to automatically load the bowtie module |
After you've completed these commands, exit lonestar and re log in to re run your profile.
Data
The data files for this example are in the path:
Code Block |
---|
$BI/ngs_course/lambda_mixed_pop/data
|
Copy this directory to a new directory called BDIB_breseq in your $SCRATCH
space and cd
into it.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
cds
mkdir BDIB_breseq_lambda
cp $BI/ngs_course/lambda_mixed_pop/data/* BDIB_breseq_lambda
cd BDIB_breseq_lambda
ls |
If the copy worked correctly you should see the following 2 files:
File Name | Description | Sample |
---|---|---|
| Single-end Illumina 36-bp reads | Evolved lambda bacteriophage mixed population genome sequencing |
| Reference Genome | Bacteriophage lambda |
Running breseq
Because this data set is relatively small (roughly 100x coverage of a 48,000 bp genome), a breseq run will take < 5 minutes. Submit this command to the TACC development queue or run on an idev node.
Code Block | ||||
---|---|---|---|---|
| ||||
idev #idev starts an "interactive development" mode which allows you to run computationally intensive tasks
breseq -j 12 -r lambda.gbk lambda_mixed_population.fastq > log.txt
|
...
Expand | |||||||
---|---|---|---|---|---|---|---|
| |||||||
This will likely sit for some time in the launcher que, making it a good opportunity to work through the interrogating launcher queue portion of our linux tutorial if you didn't get the opportunity to earlier. |
...