Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions docs/pvacbind/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,6 @@ for a variety of additional algorithms.
- Presentation
- yes
- no
* - NetMHCcons
- 1.1
- MHC Class I
- Binding
- yes
- yes
* - NetMHCpan
- 4.1
- MHC Class I
Expand Down
6 changes: 0 additions & 6 deletions docs/pvacfuse/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,6 @@ for a variety of additional algorithms.
- Presentation
- yes
- no
* - NetMHCcons
- 1.1
- MHC Class I
- Binding
- yes
- yes
* - NetMHCpan
- 4.1
- MHC Class I
Expand Down
6 changes: 0 additions & 6 deletions docs/pvacseq/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,6 @@ for a variety of additional algorithms.
- Presentation
- yes
- no
* - NetMHCcons
- 1.1
- MHC Class I
- Binding
- yes
- yes
* - NetMHCpan
- 4.1
- MHC Class I
Expand Down
8 changes: 1 addition & 7 deletions docs/pvacseq/frequently_asked_questions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,7 @@ There are a number of factors that determine the number of IEDB calls to be made

**Speedup suggestion**: Reduce the number of prediction algorithms,
epitope lengths, and/or HLA-alleles to the ones that will be the most
meaningful for your analysis. For example, the NetMHCcons method is
already a consensus method between NetMHC, NetMHCpan, and PickPocket.
If NetMHCcons is chosen, you may want to omit the underlying prediction
methods. Likewise, if you want to run NetMHC, NetMHCpan, and PickPocket
individually, you may want to skip NetMHCcons. Note that PickPocket is no
longer a prediction algorithm supported by IEDB, so it's been removed as
an algorithm in pVACtools.
meaningful for your analysis.

- ``--downstream-sequence-length`` parameter value

Expand Down
6 changes: 0 additions & 6 deletions docs/pvacsplice/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,6 @@ for a variety of additional algorithms.
- Presentation
- yes
- no
* - NetMHCcons
- 1.1
- MHC Class I
- Binding
- yes
- yes
* - NetMHCpan
- 4.1
- MHC Class I
Expand Down
4 changes: 2 additions & 2 deletions pvactools/lib/aggregate_all_epitopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def get_best_mut_line(self, df, key):

def determine_used_ic50_algorithms(self):
headers = pd.read_csv(self.input_file, delimiter="\t", nrows=0).columns.tolist()
potential_algorithms = ["NetMHCpan", "NetMHC", "NetMHCcons", "SMM", "SMMPMBEC", "MHCflurry", "MHCnuggetsI", "NetMHCIIpan", "SMMalign", "NNalign", "MHCnuggetsII", "TLBind"]
potential_algorithms = ["NetMHCpan", "NetMHC", "SMM", "SMMPMBEC", "MHCflurry", "MHCnuggetsI", "NetMHCIIpan", "SMMalign", "NNalign", "MHCnuggetsII", "TLBind"]
prediction_algorithms = []
for algorithm in potential_algorithms:
if "{} MT IC50 Score".format(algorithm) in headers or "{} IC50 Score".format(algorithm) in headers:
Expand All @@ -152,7 +152,7 @@ def determine_used_binding_score_algorithms(self):

def determine_used_binding_percentile_algorithms(self):
headers = pd.read_csv(self.input_file, delimiter="\t", nrows=0).columns.tolist()
potential_algorithms = ["NetMHCpan", "NetMHC", "NetMHCcons", "SMM", "SMMPMBEC", "MHCflurry", "MHCnuggetsI", "NetMHCIIpan", "SMMalign", "NNalign", "MHCnuggetsII", "MixMHCpred", "TLBind"]
potential_algorithms = ["NetMHCpan", "NetMHC", "SMM", "SMMPMBEC", "MHCflurry", "MHCnuggetsI", "NetMHCIIpan", "SMMalign", "NNalign", "MHCnuggetsII", "MixMHCpred", "TLBind"]
prediction_algorithms = []
for algorithm in potential_algorithms:
if "{} MT Percentile".format(algorithm) in headers or "{} Percentile".format(algorithm) in headers:
Expand Down
5 changes: 0 additions & 5 deletions pvactools/lib/prediction_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,11 +829,6 @@ class SMM(IEDBMHCI):
def iedb_prediction_method(self):
return 'smm'

class NetMHCcons(IEDBMHCI):
@property
def iedb_prediction_method(self):
return 'netmhccons'

class MHCII(PredictionClass, metaclass=ABCMeta):
@property
def needs_epitope_length(self):
Expand Down
Loading
Loading