Skip to content

Commit

Permalink
Merge pull request #2 from kylebittinger/rename-primertrim
Browse files Browse the repository at this point in the history
Rename primertrim
  • Loading branch information
scottdaniel authored Apr 14, 2021
2 parents 2f7a9d9 + 3b82461 commit 0093a0f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Detect short primer sequences in FASTQ reads and trim the reads accordingly.
## Installation

```bash
git clone https://github.com/PennChopMicrobiomeProgram/Primer_trim.git
cd Primer_trim
git clone https://github.com/PennChopMicrobiomeProgram/primertrim.git
cd primertrim
pip install -e .
```

Expand Down Expand Up @@ -41,7 +41,7 @@ stage to work.

## Example

```
remove_primers.py GCATCGATGAAGAACGCAGC -i sample.fastq \
-o sample_trimmed.fastq --log sample_trimmed.log --alignment
```bash
ptrim GCATCGATGAAGAACGCAGC -i sample.fastq -o sample_trimmed.fastq \
--log sample_trimmed.log --alignment
```
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

setup(
name='primertrim',
version='0.0.1',
version='0.0.2',
description='Trim primer sequences from FASTQ files',
author='PennCHOP Microbiome Program',
author_email='BITTINGERK@chop.edu',
url='https://github.com/PennChopMicrobiomeProgram/Primer_trim',
url='https://github.com/PennChopMicrobiomeProgram/primertrim',
packages=['primertrim'],
entry_points = {
'console_scripts': [
'remove_primers.py=primertrim.command:main',
'ptrim=primertrim.command:main',
],
}
)

0 comments on commit 0093a0f

Please sign in to comment.