cloneFolder
Short Description
The purpose of the cloneFolder
function is to copy user actions from one
folder to another. For example, if a user manually arranges thumbnails in
the localNorm
folder, this function can replicate those changes to the
raw thumbnails.
Function¶
cloneFolder(copyFolder, applyFolder, TruePos='TruePos', TrueNeg='TrueNeg', PosToNeg='PosToNeg', NegToPos='NegToPos', verbose=True)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
copyFolder |
list
|
List of folders from which the user wants to replicate the file structure. |
required |
applyFolder |
list
|
List of folders where the replicated file structure should be applied,
in the same order as the |
required |
TruePos |
str
|
Name of the folder that holds the Thumbnails classified as True Positive. |
'TruePos'
|
TrueNeg |
str
|
Name of the folder that holds the Thumbnails classified as True Negative. |
'TrueNeg'
|
PosToNeg |
str
|
Name of the folder that holds the Thumbnails that were moved from |
'PosToNeg'
|
NegToPos |
str
|
Name of the folder that holds the Thumbnails that were moved from |
'NegToPos'
|
verbose |
bool
|
If True, print detailed information about the process to the console. |
True
|
Returns:
Name | Type | Description |
---|---|---|
folder |
cloned folders
|
The file structure of the source Folder is replicated in the destination Folder. |
Example
# High level working directory
projectDir = '/Users/aj/Documents/cspotExampleData'
# list of folders to copy settings from
copyFolder = [projectDir + '/CSPOT/Thumbnails/localNorm/CD3D',
projectDir + '/CSPOT/Thumbnails/localNorm/ECAD']
# list of folders to apply setting to
applyFolder = [projectDir + '/CSPOT/Thumbnails/CD3D',
projectDir + '/CSPOT/Thumbnails/ECAD']
# note: Every copyFolder should have a corresponding applyFolder. The order matters!
# The function accepts the four pre-defined folders. If you had renamed them, please change it using the parameter below.
cs.cloneFolder (copyFolder,
applyFolder,
TruePos='TruePos', TrueNeg='TrueNeg',
PosToNeg='PosToNeg', NegToPos='NegToPos')
# Same function if the user wants to run it via Command Line Interface
python cloneFolder.py --copyFolder /Users/aj/Desktop/cspotExampleData/CSPOT/Thumbnails/localNorm/CD3D /Users/aj/Desktop/cspotExampleData/CSPOT/Thumbnails/localNorm/ECAD --applyFolder /Users/aj/Desktop/cspotExampleData/CSPOT/Thumbnails/CD3D /Users/aj/Desktop/cspotExampleData/CSPOT/Thumbnails/ECAD
Source code in cspot/cloneFolder.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
|