LSF needs all the input files for the jobs in your job array to be located in the same directory. By default LSF assumes the current working directory (CWD); the directory from where bsub was issued.
input.1, input.2, input.3, ..., input.1000
The variables %I and %J are used as substitution strings to support file redirection for jobs submitted from a job array. At execution time, %I is expanded to provide the job array index value of the current job, and %J is expanded at to provide the job ID of the job array.
input.1, input.2, input.3, ..., input.N
bsub -J "myArray[1-1000]" -i "input.%I" myJob