Skip to content

Commit b1f1365

Browse files
authored
Merge pull request #207 from bimberlabinternal/25.11_fb_repseqio
Remove repseqio dependency
2 parents a4a661d + edd48cc commit b1f1365

File tree

6 files changed

+2
-1014
lines changed

6 files changed

+2
-1014
lines changed

tcrdb/build.gradle

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,12 @@ repositories {
55
mavenCentral()
66
}
77

8-
configurations.all {
9-
resolutionStrategy {
10-
// Related to: https://nvd.nist.gov/vuln/detail/CVE-2025-12183
11-
force "at.yawk.lz4:lz4-java:${lz4Version}"
12-
}
13-
}
14-
158
dependencies {
169
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:DiscvrLabKeyModules:singlecell", depProjectConfig: "apiJarFile")
1710
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:DiscvrLabKeyModules:SequenceAnalysis", depProjectConfig: "apiJarFile")
1811
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:LabDevKitModules:laboratory", depProjectConfig: "apiJarFile")
1912
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:LabDevKitModules:LDK", depProjectConfig: "apiJarFile")
2013
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: BuildUtils.getPlatformModuleProjectPath(project.gradle, "assay"), depProjectConfig: "apiJarFile")
21-
BuildUtils.addExternalDependency(
22-
project,
23-
new ExternalDependency(
24-
"io.repseq:repseqio:${repseqVersion}",
25-
"repseqio",
26-
"repseqio",
27-
"https://github.com/repseqio/repseqio",
28-
ExternalDependency.APACHE_2_LICENSE_NAME,
29-
ExternalDependency.APACHE_2_LICENSE_URL,
30-
"TCR Analysis"
31-
),
32-
{
33-
// exclude logback to prevent excessive logging
34-
exclude group: "ch.qos.logback", module :"logback-classic"
35-
exclude group: "ch.qos.logback", module :"logback-core"
36-
}
37-
)
3814
implementation "com.github.samtools:htsjdk:${htsjdkVersion}"
3915
implementation "net.sf.opencsv:opencsv:${opencsvVersion}"
4016

tcrdb/gradle.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
repseqVersion=1.7.0
2-
# Related to: https://nvd.nist.gov/vuln/detail/CVE-2025-12183
3-
lz4Version=1.9.0

tcrdb/resources/assay/TCRdb/queries/Data.query.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,6 @@
142142
<item text="View Alignments">
143143
<onClick>TCRdb.window.ExportDataWindow.viewAlignmentHandler(dataRegionName, arguments[0] ? arguments[0].ownerCt : null);</onClick>
144144
</item>
145-
<item text="Download Clone Materials">
146-
<onClick>TCRdb.window.DownloadCloneWindow.buttonHandler(dataRegionName);</onClick>
147-
</item>
148145
<item text="Download Clone Sequence">
149146
<onClick>TCRdb.window.DownloadCloneWindow.downloadSequenceHandler(dataRegionName);</onClick>
150147
</item>

tcrdb/resources/web/tcrdb/window/DownloadCloneWindow.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ Ext4.define('TCRdb.window.DownloadCloneWindow', {
22
extend: 'Ext.window.Window',
33

44
statics: {
5-
buttonHandler: function(dataRegionName) {
6-
TCRdb.window.DownloadCloneWindow.showWindow(dataRegionName, 'downloadCloneMaterials', 'The goal of this is to download a ZIP with any extracted clone/read data for the selected sample(s), along with the reference sequence for the segments used. These files can be imported into Geneious or a similar program to de novo assemble to construct the FL clone. Note: per sample, it will export all reads overlapping any TCR segments. This at minimum will tend to include both chains (i.e. 2 different CDR3s), and might include reads that either match a defunct TCR or other noise.');
7-
},
8-
95
downloadSequenceHandler: function(dataRegionName){
106
TCRdb.window.DownloadCloneWindow.showWindow(dataRegionName, 'downloadSequence', 'This will download the full sequence (if available) for the selected rows, along with the reference segments.');
117
},

0 commit comments

Comments
 (0)