-
Notifications
You must be signed in to change notification settings - Fork 26
Add support for the non-free netMHC tool family #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0447c99
Make toolname comparison case insensitive
lkuchenb ba7138a
Add netmhc tool family support to the pipeline
lkuchenb e7507cd
Update changelog
lkuchenb 1c40c27
Add contribution to README file
lkuchenb ff434b5
Add CI tests for NetMHC family tools
lkuchenb 414045c
Update docs for NetMHC integration
lkuchenb 5b34aba
Apply suggestions from code review
lkuchenb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,10 @@ | ||
#!/bin/sh | ||
# Decrypts stdin -> stdout reading the passphrase from the environment variable | ||
# DECRYPT_PASSPHRASE. | ||
gpg \ | ||
--quiet \ | ||
--batch \ | ||
--yes \ | ||
--decrypt \ | ||
--passphrase="$DECRYPT_PASSPHRASE" \ | ||
--output - |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,24 @@ | ||
/* | ||
* ------------------------------------------------- | ||
* Nextflow config file for running tests | ||
* ------------------------------------------------- | ||
* Defines bundled input files and everything required | ||
* to run a fast and simple test. Use as follows: | ||
* nextflow run nf-core/epitopeprediction -profile test_netmhc,<docker/singularity> | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'NetMHC Test Profile' | ||
config_profile_description = 'Peptide list based test profile for NetMHC' | ||
|
||
max_cpus = 2 | ||
max_memory = 6.GB | ||
max_time = 48.h | ||
|
||
// Input data | ||
peptides = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/peptides/peptides.tsv' | ||
alleles = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/alleles/alleles.txt' | ||
|
||
tools = 'netmhc' | ||
netmhc_path = './non-free/netmhc.tar.gz' | ||
} |
This file contains hidden or 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,24 @@ | ||
/* | ||
* ------------------------------------------------- | ||
* Nextflow config file for running tests | ||
* ------------------------------------------------- | ||
* Defines bundled input files and everything required | ||
* to run a fast and simple test. Use as follows: | ||
* nextflow run nf-core/epitopeprediction -profile test_netmhcii,<docker/singularity> | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'NetMHCII Test Profile' | ||
config_profile_description = 'Peptide list based test profile for NetMHCII' | ||
|
||
max_cpus = 2 | ||
max_memory = 6.GB | ||
max_time = 48.h | ||
|
||
// Input data | ||
peptides = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/peptides/peptides_MHC_II.txt' | ||
alleles = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/alleles/alleles.DRB1_01_01.txt' | ||
|
||
tools = 'netmhcii' | ||
netmhcii_path = './non-free/netmhcii.tar.Z' | ||
} |
This file contains hidden or 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,24 @@ | ||
/* | ||
* ------------------------------------------------- | ||
* Nextflow config file for running tests | ||
* ------------------------------------------------- | ||
* Defines bundled input files and everything required | ||
* to run a fast and simple test. Use as follows: | ||
* nextflow run nf-core/epitopeprediction -profile test_netmhciipan,<docker/singularity> | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'NetMHCIIpan Test Profile' | ||
config_profile_description = 'Peptide list based test profile for NetMHCIIpan' | ||
|
||
max_cpus = 2 | ||
max_memory = 6.GB | ||
max_time = 48.h | ||
|
||
// Input data | ||
peptides = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/peptides/peptides_MHC_II.txt' | ||
alleles = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/alleles/alleles.DRB1_01_01.txt' | ||
|
||
tools = 'netmhciipan' | ||
netmhciipan_path = './non-free/netmhciipan.tar.gz' | ||
} |
This file contains hidden or 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,24 @@ | ||
/* | ||
* ------------------------------------------------- | ||
* Nextflow config file for running tests | ||
* ------------------------------------------------- | ||
* Defines bundled input files and everything required | ||
* to run a fast and simple test. Use as follows: | ||
* nextflow run nf-core/epitopeprediction -profile test_netmhcpan,<docker/singularity> | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'NetMHCpan Test Profile' | ||
config_profile_description = 'Peptide list based test profile for NetMHCpan' | ||
|
||
max_cpus = 2 | ||
max_memory = 6.GB | ||
max_time = 48.h | ||
|
||
// Input data | ||
peptides = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/peptides/peptides.tsv' | ||
alleles = 'https://raw.githubusercontent.com/nf-core/test-datasets/epitopeprediction/testdata/alleles/alleles.txt' | ||
|
||
tools = 'netmhcpan' | ||
netmhcpan_path = './non-free/netmhcpan.tar.gz' | ||
} |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.