Skip to content

Commit 839a061

Browse files
Update to version 4.1.1
1 parent 2f9cfd1 commit 839a061

File tree

5 files changed

+33
-33
lines changed

5 files changed

+33
-33
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
# The short X.Y version.
7171
version = '4.4'
7272
# The full version, including alpha/beta/rc tags.
73-
release = '4.4.0'
73+
release = '4.4.1'
7474

7575

7676
# The language for content autogenerated by Sphinx. Refer to documentation

docs/index.rst

+13-30
Original file line numberDiff line numberDiff line change
@@ -56,36 +56,19 @@ Contents
5656
New in Release |release|
5757
------------------------
5858

59-
This is a minor feature release. It adds the following features:
60-
61-
- Various updates to the pVACview main interface:
62-
63-
- Users can no select a row to investigate by clicking on the row
64-
- Users are now able to select an evaluation for a candidate by clicking on
65-
one of three buttons on the right of the candidate's row.
66-
67-
- Various updates to the pVACview NeoFox interface:
68-
69-
- By default, only a subset of NeoFox columns will be shown in order to
70-
reduce the width of the table. Additional columns can be enabled by
71-
selecting them in the "Column visibility" dropdown.
72-
- We have added heatmap cell backgrounds to IC50 binding affinity and rank
73-
columns.
74-
- We have added horizontal barplot background to VAF and expression columns.
75-
- Users are now able to select an evaluation for each candidate.
76-
- Users are now able to leave a comment on selected candidates.
77-
- The NeoFox table, including the selected evaluations and comments, can now
78-
be exported in TSV and excel format.
79-
80-
by @susannasiebert and @evelyn-schmidt in https://github.com/griffithlab/pVACtools/pull/1137
81-
82-
This release also fixes the following bug(s):
83-
84-
- A previous change would no longer allow standalone alpha/beta chain DP and DQ alleles. This change
85-
would filter out such alleles before trying to combine them into valid
86-
alpha-beta-chain pairs. This update once again enables automatic combination
87-
of DP and DQ alleles in to alpha and beta chain pairs.
88-
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1139
59+
This is a bugfix release. It fixes the following problem(s):
60+
61+
- Previously, pVACview would add an additional header line to Excel spreadsheets
62+
when exporting a TSV. This has been fixed so that the first line in the spreadsheet
63+
is the actual header line.
64+
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1143
65+
- One of the pVACview figures used to describe various anchor scenarios has been updated
66+
so that the ordering of the scenarios is consistent with other figures and descriptions
67+
throughout. Screenshots and documentation has been updated appropriately.
68+
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1144
69+
- The class II pVACview demo data was out-of-date and not reflecting recent updates to the
70+
HLA alpha-beta chain handling. This file has now been updated.
71+
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1145
8972

9073
Past release notes can be found on our :ref:`releases` page.
9174

docs/releases/4_4.rst

+17
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,20 @@ This release also fixes the following bug(s):
3434
alpha-beta-chain pairs. This update once again enables automatic combination
3535
of DP and DQ alleles in to alpha and beta chain pairs.
3636
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1139
37+
38+
Version 4.4.1
39+
-------------
40+
41+
This is a bugfix release. It fixes the following problem(s):
42+
43+
- Previously, pVACview would add an additional header line to Excel spreadsheets
44+
when exporting a TSV. This has been fixed so that the first line in the spreadsheet
45+
is the actual header line.
46+
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1143
47+
- One of the pVACview figures used to describe various anchor scenarios has been updated
48+
so that the ordering of the scenarios is consistent with other figures and descriptions
49+
throughout. Screenshots and documentation has been updated appropriately.
50+
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1144
51+
- The class II pVACview demo data was out-of-date and not reflecting recent updates to the
52+
HLA alpha-beta chain handling. This file has now been updated.
53+
by @susannasiebert in https://github.com/griffithlab/pVACtools/pull/1145

pvactools/tools/pvacview/server.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ options(shiny.port = 3333)
2424
server <- shinyServer(function(input, output, session) {
2525
## pVACtools version
2626

27-
output$version <- renderText({"pVACtools version 4.4.0"})
27+
output$version <- renderText({"pVACtools version 4.4.1"})
2828

2929
##############################DATA UPLOAD TAB###################################
3030
## helper function defined for generating shinyInputs in mainTable (Evaluation dropdown menus)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
setup(
5353
name="pvactools",
54-
version="4.4.0",
54+
version="4.4.1",
5555
packages=[
5656
"pvactools.tools",
5757
"pvactools.tools.pvacbind",

0 commit comments

Comments
 (0)