Skip to content

Commit c540c52

Browse files
author
Yves Ulrich Tittes
committed
generalized tomo info output, removed development related notes
1 parent a8110b6 commit c540c52

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Notes.txt

-5
This file was deleted.

main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ func syncXMLFromYtoX(xDir, yDir string, workers int, atlas string) error {
176176
if re.Match([]byte(file)) {
177177
switch filepath.Ext(file) {
178178
case ".tiff":
179-
data := []byte("This data was converted to tiff and (y) flipped by Tomo5 already, do not flip further!\n")
179+
data := []byte("This data was originally written as tiff by Tomo5!\n")
180180
errw := os.WriteFile(message, data, 0644)
181181
if errw != nil {
182182
fmt.Fprintln(os.Stderr, "Printing flip instructions went wrong")
183183
}
184184

185185
case ".eer":
186-
data := []byte("This data is orginially eer and was not yet (y) flipped by Tomo5, flip in y for further use!\n")
186+
data := []byte("This data is orginially written as eer by Tomo5!\n")
187187
errw := os.WriteFile(message, data, 0644)
188188
if errw != nil {
189189
fmt.Fprintln(os.Stderr, "Printing flip instructions went wrong")

0 commit comments

Comments
 (0)