Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
enasequence
sequencetools
Commits
006f63e8
Commit
006f63e8
authored
Aug 15, 2018
by
reddyk
Browse files
fixed sourcefeaturecheck bug
parent
0aebe865
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
build.gradle
build.gradle
+2
-2
embl-api-core/src/main/java/uk/ac/ebi/embl/api/validation/check/sourcefeature/SourceFeatureQualifierCheck.java
...tion/check/sourcefeature/SourceFeatureQualifierCheck.java
+1
-1
No files found.
build.gradle
View file @
006f63e8
allprojects
allprojects
{
{
ext
.
version_base
=
'1.1.26
2
'
ext
.
version_base
=
'1.1.26
3
'
version
=
version_base
version
=
version_base
tasks
.
withType
(
Javadoc
).
all
{
enabled
=
false
}
tasks
.
withType
(
Javadoc
).
all
{
enabled
=
false
}
}
}
...
@@ -183,7 +183,7 @@ project(':embl-api-validator') {
...
@@ -183,7 +183,7 @@ project(':embl-api-validator') {
manifest
{
manifest
{
attributes
(
"Implementation-Title"
:
"embl-api-validator"
,
attributes
(
"Implementation-Title"
:
"embl-api-validator"
,
"Implementation-Version"
:
"1.1.26
2
"
,
"Implementation-Version"
:
"1.1.26
3
"
,
"Main-Class"
:
"uk.ac.ebi.embl.api.validation.EnaValidator"
,
"Main-Class"
:
"uk.ac.ebi.embl.api.validation.EnaValidator"
,
"Built-By"
:
System
.
getProperty
(
'user.name'
),
"Built-By"
:
System
.
getProperty
(
'user.name'
),
"Built-Date"
:
new
Date
())
"Built-Date"
:
new
Date
())
...
...
embl-api-core/src/main/java/uk/ac/ebi/embl/api/validation/check/sourcefeature/SourceFeatureQualifierCheck.java
View file @
006f63e8
...
@@ -112,7 +112,7 @@ public class SourceFeatureQualifierCheck extends EntryValidationCheck {
...
@@ -112,7 +112,7 @@ public class SourceFeatureQualifierCheck extends EntryValidationCheck {
}
}
if
(
focus
>
0
||
transgenic
>
0
)
if
(
focus
>
0
&&
transgenic
>
0
)
{
//focus not allowed when /transgenic is used
{
//focus not allowed when /transgenic is used
reportError
(
entry
.
getOrigin
(),
FOCUS_TRANSEGENIC_EXCLUDE_MESSAGE_ID
);
reportError
(
entry
.
getOrigin
(),
FOCUS_TRANSEGENIC_EXCLUDE_MESSAGE_ID
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment