Skip to content

Commit f6ee331

Browse files
Update JD according to Code Review
1 parent 87eb244 commit f6ee331

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/main/groovy/life/qbic/datamodel/datasets/datastructure/folders/nanopore/Fast5SkipFolder.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import life.qbic.datamodel.datasets.datastructure.folders.DataFolder
66
/**
77
* A special case of a DataFolder, its name is always fast5_skip.
88
*
9-
* Its children field contains either a list of type List<Fast5Files>
9+
* Its children field contains a list of type List<Fast5Files>
1010
*
1111
*/
1212
class Fast5SkipFolder extends DataFolder {

src/main/groovy/life/qbic/datamodel/datasets/datastructure/folders/nanopore/Pod5FailFolder.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package life.qbic.datamodel.datasets.datastructure.folders.nanopore
33
import life.qbic.datamodel.datasets.datastructure.folders.DataFolder
44

55
/**
6-
* A special case of a DataFolder, its name contains always pod5_fail.
6+
* A special case of a DataFolder, its name is always pod5_fail.
77
*
88
* Its children field contains either a list of type List<Pod5Files> or List<Pod5Folder>
99
*

src/main/groovy/life/qbic/datamodel/datasets/datastructure/folders/nanopore/Pod5SkipFolder.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import life.qbic.datamodel.datasets.datastructure.folders.DataFolder
66
/**
77
* A special case of a DataFolder, its name is always pod5_skip.
88
*
9-
* Its children field contains either a list of type List<Pod5Files>
9+
* Its children field contains a list of type List<Pod5Files>
1010
*
1111
*/
1212
class Pod5SkipFolder extends DataFolder {

src/main/groovy/life/qbic/datamodel/instruments/OxfordNanoporeInstrumentOutputDoradoMinimal.groovy

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package life.qbic.datamodel.instruments
22

33

44
/**
5-
* Represents the Nanopore instrument output data structure schema.
5+
* Represents the Nanopore instrument output data structure schema generated by employing the dorado basecaller with Pod5Files.
66
*
77
* The original schema is defined in as resource and is
88
* referenced here, wrapped in a Groovy class for reference
@@ -11,9 +11,9 @@ package life.qbic.datamodel.instruments
1111
*/
1212
class OxfordNanoporeInstrumentOutputDoradoMinimal {
1313

14-
private static final String SCHEMA_PATH = "/schemas/nanopore-instrument-output_minimal_dorado.schema.json"
14+
private static final String SCHEMA_PATH = "/schemas/nanopore-instrument-output_minimal_dorado.schema.json"
1515

16-
static InputStream getSchemaAsStream() {
17-
return OxfordNanoporeInstrumentOutputDoradoMinimal.getResourceAsStream(SCHEMA_PATH)
18-
}
16+
static InputStream getSchemaAsStream() {
17+
return OxfordNanoporeInstrumentOutputDoradoMinimal.getResourceAsStream(SCHEMA_PATH)
18+
}
1919
}

0 commit comments

Comments
 (0)