-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Internal QC and mzML precursor refining pipeline | ||
|
||
## Usage | ||
Mainly internal, but if you must: | ||
|
||
``` | ||
nextflow run -resume -profile docker qc.nf \ | ||
--db your-peptides.fa \ | ||
--instrument [timstof, qe] \ # pick one of these | ||
--raw your-QC-run.raw | ||
``` | ||
|
||
When testing, instead of `--raw`, we use `--mzml` to keep files small. | ||
|
||
|
||
## Development | ||
|
||
For local work: | ||
``` | ||
bash run_tests.sh | ||
``` | ||
|
||
On github actions we run on PR/push to master. | ||
|
||
|
||
## Releasing | ||
Create a PR, make changes, update the version etc. Make sure you publish a release to update the container. | ||
|
||
|
||
## Todo: | ||
- Block PRs where there is no version change | ||
- Fix local testing script |