The input string to validate and potentially transform.
Checks if the input is a job ID by:
// Valid job ID
const result = validateSubmittedJobIdInput('ncbiblast-I20200317-103136-0485-5599422-np2');
console.log(result);
// Outputs: "https://wwwdev.ebi.ac.uk/Tools/services/rest/ncbiblast/result/ncbiblast-I20200317-103136-0485-5599422-np2/json"
// URL or invalid input (returned unchanged)
console.log(validateSubmittedJobIdInput('https://example.com/data.json'));
// Outputs: "https://example.com/data.json"
console.log(validateSubmittedJobIdInput('invalid'));
// Outputs: "invalid"
Validates and transforms a submitted job ID input into a URL if applicable.