Skip to content

Commit 0fa37df

Browse files
Fixed files that weren't meant to be modified
1 parent 5bac2ca commit 0fa37df

35 files changed

+76
-69
lines changed

.classpath

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@
66
<attribute name="gradle_used_by_scope" value="main,test"/>
77
</attributes>
88
</classpathentry>
9+
<classpathentry kind="src" output="bin/test" path="src/test/java">
10+
<attributes>
11+
<attribute name="gradle_scope" value="test"/>
12+
<attribute name="gradle_used_by_scope" value="test"/>
13+
<attribute name="test" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry kind="src" output="bin/test" path="src/test/resources">
17+
<attributes>
18+
<attribute name="gradle_scope" value="test"/>
19+
<attribute name="gradle_used_by_scope" value="test"/>
20+
<attribute name="test" value="true"/>
21+
</attributes>
22+
</classpathentry>
923
<classpathentry kind="src" output="bin/main" path="src/main/java">
1024
<attributes>
1125
<attribute name="gradle_scope" value="main"/>
@@ -15,4 +29,4 @@
1529
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
1630
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
1731
<classpathentry kind="output" path="bin/default"/>
18-
</classpath>
32+
</classpath>

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
/.gradle/
44
/build/
55
.metadata
6-
.idea
7-
/doc
6+
.idea

.project

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,4 @@
2020
<nature>org.eclipse.jdt.core.javanature</nature>
2121
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
2222
</natures>
23-
<filteredResources>
24-
<filter>
25-
<id>1687870327349</id>
26-
<name></name>
27-
<type>30</type>
28-
<matcher>
29-
<id>org.eclipse.core.resources.regexFilterMatcher</id>
30-
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
31-
</matcher>
32-
</filter>
33-
</filteredResources>
34-
</projectDescription>
23+
</projectDescription>
Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,2 @@
1-
arguments=--init-script /var/folders/32/shfmy9512bncl3tdq6z2z4v00000gs/T/d146c9752a26f79b52047fb6dc6ed385d064e120494f96f08ca63a317c41f94c.gradle --init-script /var/folders/32/shfmy9512bncl3tdq6z2z4v00000gs/T/52cde0cfcf3e28b8b7510e992210d9614505e0911af0c190bd590d7158574963.gradle
2-
auto.sync=false
3-
build.scans.enabled=false
4-
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
51
connection.project.dir=
6-
eclipse.preferences.version=1
7-
gradle.user.home=
8-
java.home=/Library/Java/JavaVirtualMachines/jdk-18.0.2.jdk/Contents/Home
9-
jvm.arguments=
10-
offline.mode=false
11-
override.workspace.settings=true
12-
show.console.view=true
13-
show.executions.view=true
2+
eclipse.preferences.version=1

gradlew

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#
2323
# Important for running:
2424
#
25-
# (1) You need a POSIX-compliant shell to run this script If your /bin/sh is
25+
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
2626
# noncompliant, but you have some other compliant shell such as ksh or
2727
# bash, then to run this script, type that shell name before the whole
2828
# command line, like:
@@ -85,7 +85,7 @@ done
8585
APP_BASE_NAME=${0##*/}
8686
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
8787

88-
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script
88+
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
8989
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
9090

9191
# Use the maximum available, or set MAX_FD != -1 to use that value.
@@ -241,4 +241,4 @@ eval "set -- $(
241241
tr '\n' ' '
242242
)" '"$@"'
243243

244-
exec "$JAVACMD" "$@"
244+
exec "$JAVACMD" "$@"

gradlew.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ set APP_HOME=%DIRNAME%
3333
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
3434
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
3535

36-
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script
36+
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
3737
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
3838

3939
@rem Find java.exe
@@ -89,4 +89,4 @@ exit /b %EXIT_CODE%
8989
:mainEnd
9090
if "%OS%"=="Windows_NT" endlocal
9191

92-
:omega
92+
:omega

src/main/java/scriptmanager/cli/BAM_Manipulation/BAIIndexerCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import scriptmanager.objects.ToolDescriptions;
88

99
/**
10-
* Print a message redirecting user to the original CLI tool.
10+
* Prints a message redirecting user to the original CLI tool.
1111
*
1212
* @author Olivia Lang
1313
* @see scriptmanager.scripts.BAM_Manipulation.BAIIndexer

src/main/java/scriptmanager/cli/BAM_Manipulation/BAMRemoveDupCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import scriptmanager.objects.ToolDescriptions;
1010

1111
/**
12-
* Print a message redirecting user to the original CLI tool.
12+
* Prints a message redirecting user to the original CLI tool.
1313
*
1414
* @author Olivia Lang
1515
* @see scriptmanager.scripts.BAM_Manipulation.BAMMarkDuplicates

src/main/java/scriptmanager/cli/BAM_Manipulation/MergeBAMCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import scriptmanager.objects.ToolDescriptions;
88

99
/**
10-
* Print a message redirecting user to the original CLI tool.
10+
* Prints a message redirecting user to the original CLI tool.
1111
*
1212
* @author Olivia Lang
1313
* @see scriptmanager.scripts.BAM_Manipulation.MergeBAM

src/main/java/scriptmanager/cli/BAM_Manipulation/SortBAMCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import scriptmanager.objects.ToolDescriptions;
99

1010
/**
11-
* Print a message redirecting user to the original CLI tool.
11+
* Prints a message redirecting user to the original CLI tool.
1212
*
1313
* @author Olivia Lang
1414
* @see scriptmanager.scripts.BAM_Manipulation.BAMFileSort

0 commit comments

Comments
 (0)