Differences between revisions 10 and 11
Revision 10 as of 2016-02-09 10:51:35
Size: 1676
Editor: BMittan
Comment:
Revision 11 as of 2016-02-09 13:16:08
Size: 1627
Editor: BMittan
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
This program is the same as [[MAKE_TILES]], but it also sets up the <sequence>.in files to be run in parallel. In other words,'''MAKETILESP''' allows [[bigmapL]] to run every <sequence>.in file it has made at the same time rather than one at a time. This program is the same as [[MAKE_TILES]], but it also creates <sequence>.INN files that can be run in parallel. In other words, '''MAKETILESP''' allows [[bigmapL]] to run all the <sequence>.INN files it has made at the same time rather than one at a time.
Line 7: Line 7:
 (./) Following is copied from make_files--check to see if it's accurate here. Like [[MAKE_TILES]], '''MAKE_TILESP''' builds <sequence>.INN files that are used to make Z-maps with [[bigmapL]]. Z-maps are essentially a combination of bigmaps that, together, fully wrap around the shape model.
Line 9: Line 9:
Like [[MAKE_TILES]], '''MAKE_TILESP''' builds <sequence>.IN files that are used to make Z-maps with [[bigmapL]]. Z-maps are essentially a combination of bigmaps that, together, fully wrap around the shape model.

'''MAKE_TILESP''' creates a <sequence>.IN file for every row in the input file [[MAPLIST.TXT]].
'''MAKE_TILESP''' creates a <sequence>.INN file for every row in the input file [[MAPLIST.TXT]].
Line 19: Line 17:
 * <MAKE_TILES##.b> files - (./) Not clear on this??  * <MAKE_TILES##>.b files -
Line 25: Line 23:
(./) Is this the command line to start this program? Or is this a command line for running bigmapL using the output files??  (./) still need a line or two here that shows how to invoke the program
Line 27: Line 25:
{{{ /usr/local/bin/bigmapL < F00001.INN > F00001.OOT }}}
Line 29: Line 26:
Here is a sample of the screen output by '''MAKE_TILESP''': Here is a sample of the screen output from '''MAKE_TILESP''':
Line 45: Line 42:
Each <MAKE_TILES##>.b file the following structure, containing one or more lines like this:

{{{ /usr/local/bin/bigmapL < F00001.INN > F00001.OOT }}}

MAKE_TILESP

Description

This program is the same as MAKE_TILES, but it also creates <sequence>.INN files that can be run in parallel. In other words, MAKETILESP allows bigmapL to run all the <sequence>.INN files it has made at the same time rather than one at a time.

Like MAKE_TILES, MAKE_TILESP builds <sequence>.INN files that are used to make Z-maps with bigmapL. Z-maps are essentially a combination of bigmaps that, together, fully wrap around the shape model.

MAKE_TILESP creates a <sequence>.INN file for every row in the input file MAPLIST.TXT.

  • /!\ Be sure to include enough bigmap names to fully wrap around the surface (calculate with q-size and surface area of shape).

Required Files

Output Files

  • <map_name>.INN files - Inputs for bigmapL

  • <MAKE_TILES##>.b files -


Using MAKE_TILESP

  • (./) still need a line or two here that shows how to invoke the program

Here is a sample of the screen output from MAKE_TILESP:

chmod +x MAKE_TILES01.b
chmod +x MAKE_TILES02.b
chmod +x MAKE_TILES03.b
chmod +x MAKE_TILES04.b

./MAKE_TILES01.b &
./MAKE_TILES02.b &
./MAKE_TILES03.b &
./MAKE_TILES04.b &
  • (!) Copy and paste the screen output into the terminal to create all the z-maps in parallel.

Each <MAKE_TILES##>.b file the following structure, containing one or more lines like this:

 /usr/local/bin/bigmapL < F00001.INN > F00001.OOT 


(Compiled by KD)

CategoryPrograms

MAKE_TILESP (last edited 2016-07-24 10:06:07 by BMittan)