Skip to content

Commit

Permalink
fix: review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
selva439 committed Jan 8, 2025
1 parent 7302263 commit 4c90331
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2024 PRIDE(Proteomics Identifications)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ OR
$ pridepy stream-files-metadata -o PXD005011_files.json -a PXD005011
```

This Python CLI tool, built using the Click module,
already provides detailed usage instructions for each command. To avoid redundancy and potential clutter in this README, you can access the usage instructions directly from the CLI
Use the below command to view a list of commands available:

```bash
Expand Down Expand Up @@ -111,6 +113,18 @@ A white paper is available at [here](paper/paper.md). We can build it as PDF usi
$docker run --rm --platform linux/amd64 -v /Users/yperez/work/pridepy/paper/:/data -w /data openjournals/inara:latest paper.md -p -o pdf
```

# Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

# Citation

Selvakumar Kamatchinathan, Suresh Hewapathirana, Chakradhar Bandla, Yasset Perez-Riverol. (2021, January 28). pridepy: A Python package to download and search data from PRIDE database (Version v0.0.3).
Expand Down
2 changes: 1 addition & 1 deletion pridepy/pridepy.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def get_similar_projects_by_accession(accession):


@main.command()
@click.option("-a", "--accession", required=False, help="accession of the project")
@click.option("-a", "--accession", required=True, help="accession of the project")
@click.option(
"-f",
"--filter",
Expand Down

0 comments on commit 4c90331

Please sign in to comment.