Mercurial > repos > imgteam > imagecoordinates_flipaxis
annotate imagecoordinates_flipaxis.py @ 0:5a210baa2ff1 draft
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
author | imgteam |
---|---|
date | Wed, 20 Mar 2019 12:06:07 -0400 |
parents | |
children | d0960e1b25a8 |
rev | line source |
---|---|
0
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
1 import argparse |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
2 import pandas as pd |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
3 |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
4 |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
5 def imagecoordinates_flipyaxis(input_file, output_file, image_height): |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
6 df = pd.read_csv(input_file, sep='\t') |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
7 |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
8 x = df.copy().y # create copy instead of view |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
9 df.y = image_height-(df.x + 1) # since maximal y index = height-1 |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
10 df.x = x |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
11 df.to_csv(output_file, sep="\t", index=False) |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
12 |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
13 |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
14 |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
15 if __name__ == "__main__": |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
16 parser = argparse.ArgumentParser() |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
17 parser.add_argument('input_file', type=argparse.FileType('r'), help='original file') |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
18 parser.add_argument('out_file_str', type=str, help='string of output file name') |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
19 # parser.add_argument('image_height', help='height of image') |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
20 parser.add_argument('image_height', type=int, help='height of image') |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
21 args = parser.parse_args() |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
22 imagecoordinates_flipyaxis(args.input_file.name, args.out_file_str, args.image_height) |
5a210baa2ff1
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/imagecoordinates_flipaxis/ commit 67eaf2b9a9ee1bfed14afba33007ef595890400c
imgteam
parents:
diff
changeset
|
23 # imagecoordinates_flipyaxis(args.input_file.name, args.out_file_str, int(args.image_height)) |