private BLASTQuery anInvalidPendingBLASTQuery() {
    BLASTQuery aBLASTQuery = aBLASTQueryWithStatus(Status.PENDING);
    aBLASTQuery.setSequence("");
    switch (aBLASTQuery.getVendorID()) {
      case BLASTVendor.EMBL_EBI:
        aBLASTQuery.setSearchParameter("email", "user@@email.com");
        break;
    }

    return aBLASTQuery;
  }