Skip to content

Commit 861669c

Browse files
committed
Final fixes before release
1 parent 92f3c19 commit 861669c

File tree

4 files changed

+14
-105
lines changed

4 files changed

+14
-105
lines changed

README.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
= ONCOFUSE V1.0.9 =
33
===================
44

5+
56
Oncofuse is a framework designed to estimate the oncogenic potential of de-novo discovered gene fusions. It uses several hallmark features and employs a bayesian classifier to provide the probability of a given gene fusion being a driver mutation.
67

78
Oncofuse is described in the following paper:
@@ -10,6 +11,7 @@ Mikhail Shugay, Inigo Ortiz de Mendibil, Jose L. Vizmanos and Francisco J. Novo.
1011
See http://www.unav.es/genetica/oncofuse.html for further details.
1112

1213

14+
1315
>WHAT'S NEW
1416

1517
- Version 1.0.9 (Nov-2014) minor improvements, support for hg18, hg19 and hg38 genome assemblies. ALWAYS check the coordinate system
@@ -27,13 +29,15 @@ See http://www.unav.es/genetica/oncofuse.html for further details.
2729
- As from version 1.0.3, installation of Groovy is not necessary. Input file types and the content of output file have also been improved.
2830

2931

32+
3033
>OPTIONS
3134

3235
-p option specifies the number of threads Oncofuse will use
3336

3437
-a option specifies genome assembly version. Allowed values: hg18, hg19 and hg38. Default value: hg19
3538

3639

40+
3741
>INPUT
3842

3943
This tool is designed to predict the oncogenic potential of fusion genes found by Next-Generation Sequencing in cancer cells. It also provides information on hallmarks of driver gene fusions, such as expression gain of resulting fusion gene, retained protein interaction interfaces and resulting protein domain functional profile.
@@ -65,6 +69,7 @@ input_type = "rnastar"
6569
Default output file of RNASTAR software. Data is pre-filtered based on number of spanning N>=1 and total number of supporting reads M>=2 reads. These parameters could be changed with extended input type argument "rnastar-N-M". Tissue type has to be set using tissue_type argument.
6670

6771

72+
6873
>OUTPUT
6974

7075
A tab-delimited table with the following columns

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,15 @@
8282
</fileset>
8383
</copy>
8484
<zip destfile="${project.basedir}/${project.build.finalName}.zip">
85-
<fileset dir="${project.build.directory}"
86-
includes="libs/**,common/**,${project.build.finalName}.${project.packaging}"/>
85+
<zipfileset dir="${project.build.directory}"
86+
includes="libs/**,common/**,example/**"
87+
prefix="${project.build.finalName}"/>
88+
<zipfileset dir="${project.build.directory}"
89+
includes="${project.build.finalName}.jar"
90+
fullpath="${project.build.finalName}/Oncofuse.jar"/>
91+
<zipfileset dir="${project.basedir}"
92+
includes="README.txt,LICENCE.txt"
93+
prefix="${project.build.finalName}"/>
8794
</zip>
8895
</tasks>
8996
</configuration>

src/main/resources/example/README.txt

Lines changed: 0 additions & 103 deletions
This file was deleted.

0 commit comments

Comments
 (0)