Skip to content

Commit

Permalink
update docs for paired-end reads
Browse files Browse the repository at this point in the history
  • Loading branch information
kepbod committed Jun 15, 2017
1 parent 990aa95 commit 1e73dbf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,16 @@ tophat2 -o tophat_fusion -p 15 --fusion-search --keep-fasta-order --bowtie1 --no

To detect fusion junctions with STAR, `--chimSegmentMin` should be set to a positive value.

For example:
Example 1 (single reads):
```bash
STAR --chimSegmentMin 10 --runThreadN 10 --genomeDir hg19_STAR_index --readFilesIn RNA_seq.fastq
```

Example 2 (paired-end reads):
```bash
STAR --chimSegmentMin 10 --runThreadN 10 --genomeDir hg19_STAR_index --readFilesIn read_1.fastq read_2.fastq
```

For more details about STAR, please refer to [STAR manual](https://github.com/alexdobin/STAR/blob/master/doc/STARmanual.pdf).

## Installation
Expand Down

0 comments on commit 1e73dbf

Please sign in to comment.